diff options
author | Pavel JanÃk <Pavel@Janik.cz> | 2016-09-09 13:43:29 +0200 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2016-09-23 12:42:00 +0200 |
commit | f8393504205089112cdec27ac1829282b76b94a3 (patch) | |
tree | c38c196ef0873e372b63066f5e8b31e0f6e82b97 /src/qt/clientmodel.cpp | |
parent | 26b370a93700d81ab92b528c3194bd90234b07ce (diff) |
Do not shadow in src/qt
Diffstat (limited to 'src/qt/clientmodel.cpp')
-rw-r--r-- | src/qt/clientmodel.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/qt/clientmodel.cpp b/src/qt/clientmodel.cpp index 83c78850e2..62a70bacd9 100644 --- a/src/qt/clientmodel.cpp +++ b/src/qt/clientmodel.cpp @@ -27,9 +27,9 @@ static const int64_t nClientStartupTime = GetTime(); static int64_t nLastHeaderTipUpdateNotification = 0; static int64_t nLastBlockTipUpdateNotification = 0; -ClientModel::ClientModel(OptionsModel *optionsModel, QObject *parent) : +ClientModel::ClientModel(OptionsModel *_optionsModel, QObject *parent) : QObject(parent), - optionsModel(optionsModel), + optionsModel(_optionsModel), peerTableModel(0), banTableModel(0), pollTimer(0) |