diff options
author | practicalswift <practicalswift@users.noreply.github.com> | 2018-04-10 01:23:24 +0200 |
---|---|---|
committer | practicalswift <practicalswift@users.noreply.github.com> | 2018-04-10 01:23:24 +0200 |
commit | f131872653dadafd9af8bec255dfd2bddd75a471 (patch) | |
tree | 5fa3e67ca5b56c1453b153a724c679c701546aea /src/qt/addresstablemodel.h | |
parent | 73bc1b7cd2b3fb5e34f4fc5aaa6892fb1e8f2d1e (diff) |
Initialize non-static class members where they are defined
Diffstat (limited to 'src/qt/addresstablemodel.h')
-rw-r--r-- | src/qt/addresstablemodel.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/qt/addresstablemodel.h b/src/qt/addresstablemodel.h index 9b20157a81..94e0e1edce 100644 --- a/src/qt/addresstablemodel.h +++ b/src/qt/addresstablemodel.h @@ -81,8 +81,8 @@ public: OutputType GetDefaultAddressType() const; private: - WalletModel *walletModel; - AddressTablePriv *priv; + WalletModel *walletModel = nullptr; + AddressTablePriv *priv = nullptr; QStringList columns; EditStatus editStatus = OK; |