aboutsummaryrefslogtreecommitdiff
path: root/src/model/SubaddressAccountModel.cpp
diff options
context:
space:
mode:
authorxiphon <xiphon@protonmail.com>2020-02-16 02:52:53 +0000
committerxiphon <xiphon@protonmail.com>2020-02-16 13:55:08 +0000
commit98abdaa5d54daeb506acefeff901d8c4ba5c9eb6 (patch)
tree4a039b44d4d9e4f7db3346cd2d3a05525594434e /src/model/SubaddressAccountModel.cpp
parenteb7fae92ef0ed01a1d17e56fac217c6450716ccc (diff)
downloadmonzero-gui-98abdaa5d54daeb506acefeff901d8c4ba5c9eb6.tar.gz
monzero-gui-98abdaa5d54daeb506acefeff901d8c4ba5c9eb6.tar.xz
monzero-gui-98abdaa5d54daeb506acefeff901d8c4ba5c9eb6.zip
build: fix all warnings, treat warnings as errors
Diffstat (limited to 'src/model/SubaddressAccountModel.cpp')
-rw-r--r--src/model/SubaddressAccountModel.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/model/SubaddressAccountModel.cpp b/src/model/SubaddressAccountModel.cpp
index c84b4532..51721b8b 100644
--- a/src/model/SubaddressAccountModel.cpp
+++ b/src/model/SubaddressAccountModel.cpp
@@ -35,17 +35,14 @@
SubaddressAccountModel::SubaddressAccountModel(QObject *parent, SubaddressAccount *subaddressAccount)
: QAbstractListModel(parent), m_subaddressAccount(subaddressAccount)
{
- qDebug(__FUNCTION__);
connect(m_subaddressAccount,SIGNAL(refreshStarted()),this,SLOT(startReset()));
connect(m_subaddressAccount,SIGNAL(refreshFinished()),this,SLOT(endReset()));
}
void SubaddressAccountModel::startReset(){
- qDebug("SubaddressAccountModel::startReset");
beginResetModel();
}
void SubaddressAccountModel::endReset(){
- qDebug("SubaddressAccountModel::endReset");
endResetModel();
}