mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-05-12 21:00:36 +02:00
guiutil.cpp/.h: fix a -Wreorder compiler warning and make constructor for ToolTipToRichTextFilter explicit
This commit is contained in:
parent
508471bbc0
commit
58b01afc50
@ -244,7 +244,7 @@ void openDebugLogfile()
|
||||
}
|
||||
|
||||
ToolTipToRichTextFilter::ToolTipToRichTextFilter(int size_threshold, QObject *parent) :
|
||||
size_threshold(size_threshold), QObject(parent)
|
||||
QObject(parent), size_threshold(size_threshold)
|
||||
{
|
||||
|
||||
}
|
||||
|
@ -81,7 +81,7 @@ namespace GUIUtil
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
ToolTipToRichTextFilter(int size_threshold, QObject *parent);
|
||||
explicit ToolTipToRichTextFilter(int size_threshold, QObject *parent = 0);
|
||||
|
||||
protected:
|
||||
bool eventFilter(QObject *obj, QEvent *evt);
|
||||
|
Loading…
x
Reference in New Issue
Block a user