mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-11-11 14:38:29 +01:00
Remove redundant initializations from the constructor
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user