diff options
| author | Jonas Schnelli <[email protected]> | 2014-11-21 20:07:00 +0100 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2014-11-24 15:26:58 +0100 |
| commit | c5a22828559bdac8fd347e30a3027dbaf54934ae (patch) | |
| tree | 446efbb03b55ca04f95ec02c44b13fc2d4188e13 /src | |
| parent | Merge pull request #1816 (diff) | |
| download | discoin-c5a22828559bdac8fd347e30a3027dbaf54934ae.tar.xz discoin-c5a22828559bdac8fd347e30a3027dbaf54934ae.zip | |
[Qt, OSX] fix Qt4.8 compatibility with QProgressBar issue
Rebased-From: 7f33d2cebfde99ded12c711ef6bd77c91725cfb8
Github-Issue: #5344
Diffstat (limited to 'src')
| -rw-r--r-- | src/qt/guiutil.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qt/guiutil.h b/src/qt/guiutil.h index a6ecfbcc8..09c79db2d 100644 --- a/src/qt/guiutil.h +++ b/src/qt/guiutil.h @@ -189,7 +189,7 @@ namespace GUIUtil /* Format a CNodeCombinedStats.dPingTime into a user-readable string or display N/A, if 0*/ QString formatPingTime(double dPingTime); -#ifdef Q_OS_MAC +#if defined(Q_OS_MAC) && QT_VERSION >= 0x050000 // workaround for Qt OSX Bug: // https://bugreports.qt-project.org/browse/QTBUG-15631 // QProgressBar uses around 10% CPU even when app is in background |