diff options
| author | practicalswift <[email protected]> | 2018-07-30 12:37:09 +0200 |
|---|---|---|
| committer | Ben Woosley <[email protected]> | 2019-01-13 03:25:14 -0800 |
| commit | 9096276e0b2d5b7e19af9a5f3c144ef108ee55e0 (patch) | |
| tree | d31596ad94235ed328012c191d6d5055f60bf31c /src/qt/guiutil.h | |
| parent | Merge #13216: [Qt] implements concept for different disk sizes on intro (diff) | |
| download | discoin-9096276e0b2d5b7e19af9a5f3c144ef108ee55e0.tar.xz discoin-9096276e0b2d5b7e19af9a5f3c144ef108ee55e0.zip | |
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.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qt/guiutil.h b/src/qt/guiutil.h index f1d0aa48e..ecb770d14 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); |