Browse Source

guiutil.cpp/.h: fix a -Wreorder compiler warning and make constructor for ToolTipToRichTextFilter explicit

miguelfreitas
Philip Kaufmann 13 years ago
parent
commit
58b01afc50
  1. 2
      src/qt/guiutil.cpp
  2. 2
      src/qt/guiutil.h

2
src/qt/guiutil.cpp

@ -244,7 +244,7 @@ void openDebugLogfile()
} }
ToolTipToRichTextFilter::ToolTipToRichTextFilter(int size_threshold, QObject *parent) : ToolTipToRichTextFilter::ToolTipToRichTextFilter(int size_threshold, QObject *parent) :
size_threshold(size_threshold), QObject(parent) QObject(parent), size_threshold(size_threshold)
{ {
} }

2
src/qt/guiutil.h

@ -81,7 +81,7 @@ namespace GUIUtil
{ {
Q_OBJECT Q_OBJECT
public: public:
ToolTipToRichTextFilter(int size_threshold, QObject *parent); explicit ToolTipToRichTextFilter(int size_threshold, QObject *parent = 0);
protected: protected:
bool eventFilter(QObject *obj, QEvent *evt); bool eventFilter(QObject *obj, QEvent *evt);

Loading…
Cancel
Save