aboutsummaryrefslogtreecommitdiff
path: root/src/qt/clientmodel.cpp
diff options
context:
space:
mode:
authorPieter Wuille <[email protected]>2013-11-10 19:19:30 +0100
committerPieter Wuille <[email protected]>2013-11-10 19:21:03 +0100
commitf76c122e2eac8ef66f69d142231bd33c88a24c50 (patch)
treed2f910390e55aef857023812fbdaefdd66cd99ff /src/qt/clientmodel.cpp
parentMerge pull request #3211 (diff)
parentCleanup code using forward declarations. (diff)
downloaddiscoin-f76c122e2eac8ef66f69d142231bd33c88a24c50.tar.xz
discoin-f76c122e2eac8ef66f69d142231bd33c88a24c50.zip
Merge pull request #2767
51ed9ec Cleanup code using forward declarations. (Brandon Dahler)
Diffstat (limited to 'src/qt/clientmodel.cpp')
-rw-r--r--src/qt/clientmodel.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/qt/clientmodel.cpp b/src/qt/clientmodel.cpp
index 872d71403..c64e411bc 100644
--- a/src/qt/clientmodel.cpp
+++ b/src/qt/clientmodel.cpp
@@ -5,21 +5,21 @@
#include "clientmodel.h"
#include "guiconstants.h"
-#include "optionsmodel.h"
-#include "addresstablemodel.h"
-#include "transactiontablemodel.h"
-#include "chainparams.h"
#include "alert.h"
-#include "main.h"
+#include "chainparams.h"
#include "checkpoints.h"
+#include "main.h"
+#include "net.h"
#include "ui_interface.h"
+#include <stdint.h>
+
#include <QDateTime>
-#include <QTimer>
#include <QDebug>
+#include <QTimer>
-static const int64 nClientStartupTime = GetTime();
+static const int64_t nClientStartupTime = GetTime();
ClientModel::ClientModel(OptionsModel *optionsModel, QObject *parent) :
QObject(parent), optionsModel(optionsModel),