diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2016-09-23 12:44:09 +0200 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2016-09-23 12:44:35 +0200 |
commit | 5d0219d983b6cb8de5b4faf3f78a6781c99e442b (patch) | |
tree | a6f613a511056681f0a294a129f876845bf7f777 /src/qt/overviewpage.cpp | |
parent | 2b514aa2eae61839ad162b2f6e5ba69ef96c5c97 (diff) | |
parent | f8393504205089112cdec27ac1829282b76b94a3 (diff) |
Merge #8793: Do not shadow in src/qt
f839350 Do not shadow in src/qt (Pavel JanÃk)
Diffstat (limited to 'src/qt/overviewpage.cpp')
-rw-r--r-- | src/qt/overviewpage.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/qt/overviewpage.cpp b/src/qt/overviewpage.cpp index 6a0404cbf7..788d917bcc 100644 --- a/src/qt/overviewpage.cpp +++ b/src/qt/overviewpage.cpp @@ -25,9 +25,9 @@ class TxViewDelegate : public QAbstractItemDelegate { Q_OBJECT public: - TxViewDelegate(const PlatformStyle *platformStyle): + TxViewDelegate(const PlatformStyle *_platformStyle): QAbstractItemDelegate(), unit(BitcoinUnits::BTC), - platformStyle(platformStyle) + platformStyle(_platformStyle) { } |