aboutsummaryrefslogtreecommitdiff
path: root/gui/src/clientmodel.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'gui/src/clientmodel.cpp')
-rw-r--r--gui/src/clientmodel.cpp13
1 files changed, 10 insertions, 3 deletions
diff --git a/gui/src/clientmodel.cpp b/gui/src/clientmodel.cpp
index 7dcbc576a4..497f8dc3d2 100644
--- a/gui/src/clientmodel.cpp
+++ b/gui/src/clientmodel.cpp
@@ -2,11 +2,12 @@
#include "main.h"
#include "guiconstants.h"
#include "optionsmodel.h"
+#include "addresstablemodel.h"
#include <QTimer>
ClientModel::ClientModel(QObject *parent) :
- QObject(parent), options_model(0)
+ QObject(parent), optionsModel(0), addressTableModel(0)
{
/* Until we build signal notifications into the bitcoin core,
simply update everything using a timer.
@@ -15,7 +16,8 @@ ClientModel::ClientModel(QObject *parent) :
connect(timer, SIGNAL(timeout()), this, SLOT(update()));
timer->start(MODEL_UPDATE_DELAY);
- options_model = new OptionsModel(this);
+ optionsModel = new OptionsModel(this);
+ addressTableModel = new AddressTableModel(this);
}
qint64 ClientModel::getBalance()
@@ -128,5 +130,10 @@ ClientModel::StatusCode ClientModel::sendCoins(const QString &payTo, qint64 payA
OptionsModel *ClientModel::getOptionsModel()
{
- return options_model;
+ return optionsModel;
+}
+
+AddressTableModel *ClientModel::getAddressTableModel()
+{
+ return addressTableModel;
}