diff options
| author | Philip Kaufmann <[email protected]> | 2012-09-21 19:06:53 +0200 |
|---|---|---|
| committer | Philip Kaufmann <[email protected]> | 2012-09-21 19:06:53 +0200 |
| commit | 81605d90f53e5ab500f56927f4337bbc7f2d24f8 (patch) | |
| tree | ef3fe924376355bee4a4c661698a8d388c7b751d /src/qt/rpcconsole.cpp | |
| parent | Merge pull request #1793 from Diapolo/fix_signed_unsigned_strprintf (diff) | |
| download | discoin-81605d90f53e5ab500f56927f4337bbc7f2d24f8.tar.xz discoin-81605d90f53e5ab500f56927f4337bbc7f2d24f8.zip | |
enhance Qt5 compatibility
- replace Q_WS_MAC (not supported anymore in Qt5) with Q_OS_MAC (supported
in Qt4/5)
Diffstat (limited to 'src/qt/rpcconsole.cpp')
| -rw-r--r-- | src/qt/rpcconsole.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qt/rpcconsole.cpp b/src/qt/rpcconsole.cpp index 8a6dafcf7..2b8a0c049 100644 --- a/src/qt/rpcconsole.cpp +++ b/src/qt/rpcconsole.cpp @@ -192,7 +192,7 @@ RPCConsole::RPCConsole(QWidget *parent) : { ui->setupUi(this); -#ifndef Q_WS_MAC +#ifndef Q_OS_MAC ui->openDebugLogfileButton->setIcon(QIcon(":/icons/export")); ui->showCLOptionsButton->setIcon(QIcon(":/icons/options")); #endif |