Mac build fixes

This commit is contained in:
John Maguire 2010-03-25 23:03:28 +00:00
parent cc2c7b53cc
commit 11bd9966d1
2 changed files with 7 additions and 1 deletions

View File

@ -116,3 +116,7 @@ void OSD::ShowMessage(const QString& summary,
break;
}
}
#ifndef Q_WS_X11
void OSD::CallFinished(QDBusPendingCallWatcher*) {}
#endif

View File

@ -26,6 +26,8 @@
class OSDPretty;
class QDBusPendingCallWatcher;
#ifdef Q_WS_X11
#include <QDBusArgument>
#include <boost/scoped_ptr.hpp>
@ -95,9 +97,9 @@ class OSD : public QObject {
#ifdef Q_WS_X11
boost::scoped_ptr<org::freedesktop::Notifications> interface_;
#endif
private slots:
void CallFinished(QDBusPendingCallWatcher* watcher);
#endif
};
#endif // OSD_H