diff options
| author | Wladimir J. van der Laan <[email protected]> | 2013-09-29 02:50:56 -0700 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2013-09-29 02:50:56 -0700 |
| commit | 75d31c84dba2e5280341b756aa9dc39a345dfffd (patch) | |
| tree | b61d2936677541a513371335214d28f665b4b3bc /src/qt/bitcoin.cpp | |
| parent | Merge pull request #3029 from wtogami/gitianwin32 (diff) | |
| parent | several small Qt-related fixes (diff) | |
| download | discoin-75d31c84dba2e5280341b756aa9dc39a345dfffd.tar.xz discoin-75d31c84dba2e5280341b756aa9dc39a345dfffd.zip | |
Merge pull request #3039 from Diapolo/Qt_misc
several small Qt-related fixes
Diffstat (limited to 'src/qt/bitcoin.cpp')
| -rw-r--r-- | src/qt/bitcoin.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/qt/bitcoin.cpp b/src/qt/bitcoin.cpp index f184fb9ef..78693971d 100644 --- a/src/qt/bitcoin.cpp +++ b/src/qt/bitcoin.cpp @@ -155,11 +155,14 @@ static void initTranslations(QTranslator &qtTranslatorBase, QTranslator &qtTrans #if QT_VERSION < 0x050000 void DebugMessageHandler(QtMsgType type, const char * msg) { + Q_UNUSED(type); LogPrint("qt", "Bitcoin-Qt: %s\n", msg); } #else void DebugMessageHandler(QtMsgType type, const QMessageLogContext& context, const QString &msg) { + Q_UNUSED(type); + Q_UNUSED(context); LogPrint("qt", "Bitcoin-Qt: %s\n", qPrintable(msg)); } #endif |