diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2011-09-24 11:56:33 +0200 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2011-09-24 11:56:33 +0200 |
commit | 010c4fc0b5ca8ceccf15417b833bea4ce1016f43 (patch) | |
tree | 230414f6e233d2858da801c3e3fc22a59be0ef0f /src/qt/notificator.h | |
parent | 99cec89cb369beb8dce6c92db837bb5951f627d5 (diff) |
Change define to determine use of DBUS to USE_DBUS, to prevent overlap with Qt-defined QT_DBUS
Diffstat (limited to 'src/qt/notificator.h')
-rw-r--r-- | src/qt/notificator.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/qt/notificator.h b/src/qt/notificator.h index 13f6a908da..4217f7e06f 100644 --- a/src/qt/notificator.h +++ b/src/qt/notificator.h @@ -6,7 +6,7 @@ QT_BEGIN_NAMESPACE class QSystemTrayIcon; -#ifdef QT_DBUS +#ifdef USE_DBUS class QDBusInterface; #endif QT_END_NAMESPACE @@ -52,7 +52,7 @@ private: QString programName; Mode mode; QSystemTrayIcon *trayIcon; -#ifdef QT_DBUS +#ifdef USE_DBUS QDBusInterface *interface; void notifyDBus(Class cls, const QString &title, const QString &text, const QIcon &icon, int millisTimeout); |