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/addresstablemodel.cpp | |
| 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/addresstablemodel.cpp')
| -rw-r--r-- | src/qt/addresstablemodel.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qt/addresstablemodel.cpp b/src/qt/addresstablemodel.cpp index 2f88e15d2..289d83e3d 100644 --- a/src/qt/addresstablemodel.cpp +++ b/src/qt/addresstablemodel.cpp @@ -153,7 +153,7 @@ public: } else { - return 0; + return nullptr; } } }; |