diff options
author | Philip Kaufmann <phil.kaufmann@t-online.de> | 2012-05-11 11:32:04 +0200 |
---|---|---|
committer | Philip Kaufmann <phil.kaufmann@t-online.de> | 2012-05-11 11:32:04 +0200 |
commit | 58b01afc5092cb56e1a5d2b6c8f96dade8ed6c02 (patch) | |
tree | aa89f492782447949bb6dc2f29285fd64d8d0d87 /src/qt/guiutil.cpp | |
parent | 508471bbc0b43a8d5cabeae5c429f8416b9a1e99 (diff) |
guiutil.cpp/.h: fix a -Wreorder compiler warning and make constructor for ToolTipToRichTextFilter explicit
Diffstat (limited to 'src/qt/guiutil.cpp')
-rw-r--r-- | src/qt/guiutil.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/qt/guiutil.cpp b/src/qt/guiutil.cpp index 9a7d42fa08..fab97f91c4 100644 --- a/src/qt/guiutil.cpp +++ b/src/qt/guiutil.cpp @@ -243,8 +243,8 @@ void openDebugLogfile() #endif } -ToolTipToRichTextFilter::ToolTipToRichTextFilter(int size_threshold, QObject *parent): - size_threshold(size_threshold), QObject(parent) +ToolTipToRichTextFilter::ToolTipToRichTextFilter(int size_threshold, QObject *parent) : + QObject(parent), size_threshold(size_threshold) { } |