diff options
| author | Wladimir J. van der Laan <[email protected]> | 2014-05-24 11:21:56 +0200 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2014-05-24 11:22:00 +0200 |
| commit | 7a419a61b6e357229620ade1e459b8e437fa86c8 (patch) | |
| tree | 2f86d84c57ee21982281d533b1a6fbeef6c97348 /src | |
| parent | doc: Add historical release notes for 0.9.1 (diff) | |
| parent | Fix warning when compiling in OS X (diff) | |
| download | discoin-7a419a61b6e357229620ade1e459b8e437fa86c8.tar.xz discoin-7a419a61b6e357229620ade1e459b8e437fa86c8.zip | |
Merge pull request #4222
cdb36ef Fix warning when compiling in OS X (Federico Bond)
Diffstat (limited to 'src')
| -rw-r--r-- | src/qt/notificator.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/qt/notificator.cpp b/src/qt/notificator.cpp index 38a029dbe..3d588cd31 100644 --- a/src/qt/notificator.cpp +++ b/src/qt/notificator.cpp @@ -28,8 +28,10 @@ #endif +#ifdef USE_DBUS // https://wiki.ubuntu.com/NotificationDevelopmentGuidelines recommends at least 128 const int FREEDESKTOP_NOTIFICATION_ICON_SIZE = 128; +#endif Notificator::Notificator(const QString &programName, QSystemTrayIcon *trayicon, QWidget *parent) : QObject(parent), |