diff options
author | practicalswift <practicalswift@users.noreply.github.com> | 2018-04-11 11:56:44 +0200 |
---|---|---|
committer | practicalswift <practicalswift@users.noreply.github.com> | 2018-04-11 11:56:44 +0200 |
commit | 1e7813e9bbb2561eafdf89481e92411be44f887a (patch) | |
tree | 6de43f9d4e826f7efc0737fadd09cc2c5e5721b4 /src/qt/addresstablemodel.cpp | |
parent | f131872653dadafd9af8bec255dfd2bddd75a471 (diff) |
Remove redundant initializations from the constructor
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 1e3acd75c0..b6ecd40e81 100644 --- a/src/qt/addresstablemodel.cpp +++ b/src/qt/addresstablemodel.cpp @@ -159,7 +159,7 @@ public: }; AddressTableModel::AddressTableModel(WalletModel *parent) : - QAbstractTableModel(parent),walletModel(parent),priv(0) + QAbstractTableModel(parent), walletModel(parent) { columns << tr("Label") << tr("Address"); priv = new AddressTablePriv(this); |