diff options
| author | MarcoFalke <[email protected]> | 2018-02-10 21:06:35 -0500 |
|---|---|---|
| committer | MarcoFalke <[email protected]> | 2018-03-17 16:10:01 -0400 |
| commit | fab8a6f609d15863545955d6523c616c2a97eeab (patch) | |
| tree | a6ec9f9c5572e341ac150f470ed7dc24accfae28 /src/qt/addresstablemodel.cpp | |
| parent | Merge #12683: Fix more constness violations in serialization code (diff) | |
| download | discoin-fab8a6f609d15863545955d6523c616c2a97eeab.tar.xz discoin-fab8a6f609d15863545955d6523c616c2a97eeab.zip | |
wallet: Change output type globals to members
Diffstat (limited to 'src/qt/addresstablemodel.cpp')
| -rw-r--r-- | src/qt/addresstablemodel.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/qt/addresstablemodel.cpp b/src/qt/addresstablemodel.cpp index 4f9a79d65..801334483 100644 --- a/src/qt/addresstablemodel.cpp +++ b/src/qt/addresstablemodel.cpp @@ -441,6 +441,8 @@ int AddressTableModel::lookupAddress(const QString &address) const } } +OutputType AddressTableModel::GetDefaultAddressType() const { return wallet->m_default_address_type; }; + void AddressTableModel::emitDataChanged(int idx) { Q_EMIT dataChanged(index(idx, 0, QModelIndex()), index(idx, columns.length()-1, QModelIndex())); |