aboutsummaryrefslogtreecommitdiff
path: root/src/qt/guiutil.h
diff options
context:
space:
mode:
authorpracticalswift <practicalswift@users.noreply.github.com>2018-07-30 12:37:09 +0200
committerBen Woosley <ben.woosley@gmail.com>2019-01-13 03:25:14 -0800
commit9096276e0b2d5b7e19af9a5f3c144ef108ee55e0 (patch)
treed31596ad94235ed328012c191d6d5055f60bf31c /src/qt/guiutil.h
parent84d0fdce11709c8e26b9c450d47727ab36641437 (diff)
downloadbitcoin-9096276e0b2d5b7e19af9a5f3c144ef108ee55e0.tar.xz
Don't use zero as null pointer constant (-Wzero-as-null-pointer-constant)
Qt-only changes.
Diffstat (limited to 'src/qt/guiutil.h')
-rw-r--r--src/qt/guiutil.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qt/guiutil.h b/src/qt/guiutil.h
index f1d0aa48ef..ecb770d147 100644
--- a/src/qt/guiutil.h
+++ b/src/qt/guiutil.h
@@ -133,7 +133,7 @@ namespace GUIUtil
Q_OBJECT
public:
- explicit ToolTipToRichTextFilter(int size_threshold, QObject *parent = 0);
+ explicit ToolTipToRichTextFilter(int size_threshold, QObject *parent = nullptr);
protected:
bool eventFilter(QObject *obj, QEvent *evt);