diff options
| author | Wladimir J. van der Laan <[email protected]> | 2016-09-23 12:44:09 +0200 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2016-09-23 12:44:35 +0200 |
| commit | 5d0219d983b6cb8de5b4faf3f78a6781c99e442b (patch) | |
| tree | a6f613a511056681f0a294a129f876845bf7f777 /src/qt/networkstyle.cpp | |
| parent | Merge #8785: Comment on CNode::nLocalServices meaning (diff) | |
| parent | Do not shadow in src/qt (diff) | |
| download | discoin-5d0219d983b6cb8de5b4faf3f78a6781c99e442b.tar.xz discoin-5d0219d983b6cb8de5b4faf3f78a6781c99e442b.zip | |
Merge #8793: Do not shadow in src/qt
f839350 Do not shadow in src/qt (Pavel JanÃk)
Diffstat (limited to 'src/qt/networkstyle.cpp')
| -rw-r--r-- | src/qt/networkstyle.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/qt/networkstyle.cpp b/src/qt/networkstyle.cpp index 5f31f4937..acbfee086 100644 --- a/src/qt/networkstyle.cpp +++ b/src/qt/networkstyle.cpp @@ -22,9 +22,9 @@ static const struct { static const unsigned network_styles_count = sizeof(network_styles)/sizeof(*network_styles); // titleAddText needs to be const char* for tr() -NetworkStyle::NetworkStyle(const QString &appName, const int iconColorHueShift, const int iconColorSaturationReduction, const char *titleAddText): - appName(appName), - titleAddText(qApp->translate("SplashScreen", titleAddText)) +NetworkStyle::NetworkStyle(const QString &_appName, const int iconColorHueShift, const int iconColorSaturationReduction, const char *_titleAddText): + appName(_appName), + titleAddText(qApp->translate("SplashScreen", _titleAddText)) { // load pixmap QPixmap pixmap(":/icons/bitcoin"); |