From 58b01afc5092cb56e1a5d2b6c8f96dade8ed6c02 Mon Sep 17 00:00:00 2001 From: Philip Kaufmann Date: Fri, 11 May 2012 11:32:04 +0200 Subject: guiutil.cpp/.h: fix a -Wreorder compiler warning and make constructor for ToolTipToRichTextFilter explicit --- src/qt/guiutil.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/qt/guiutil.cpp') diff --git a/src/qt/guiutil.cpp b/src/qt/guiutil.cpp index 9a7d42fa0..fab97f91c 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) { } -- cgit v1.2.3