diff options
| author | Wladimir J. van der Laan <[email protected]> | 2013-11-05 09:02:13 -0800 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2013-11-05 09:02:13 -0800 |
| commit | 07131220f34fdbcfb3a9ec1b64dbefd0c30a6cd9 (patch) | |
| tree | aa7cc424f923d3650b89d3219f6bb6bd10f534f9 /src | |
| parent | qt: remove unused signal from addresstablemodel (diff) | |
| parent | [Qt] use tr() instead of QObject::tr() in intro.cpp (diff) | |
| download | discoin-07131220f34fdbcfb3a9ec1b64dbefd0c30a6cd9.tar.xz discoin-07131220f34fdbcfb3a9ec1b64dbefd0c30a6cd9.zip | |
Merge pull request #3205 from Diapolo/intro
[Qt] use tr() instead of QObject::tr() in intro.cpp
Diffstat (limited to 'src')
| -rw-r--r-- | src/qt/intro.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/qt/intro.cpp b/src/qt/intro.cpp index 60ddbc1e3..e7e768225 100644 --- a/src/qt/intro.cpp +++ b/src/qt/intro.cpp @@ -181,8 +181,8 @@ void Intro::pickDataDirectory(bool fIsTestnet) fs::create_directory(dataDir.toStdString()); break; } catch(fs::filesystem_error &e) { - QMessageBox::critical(0, QObject::tr("Bitcoin"), - QObject::tr("Error: Specified data directory \"%1\" can not be created.").arg(dataDir)); + QMessageBox::critical(0, tr("Bitcoin"), + tr("Error: Specified data directory \"%1\" can not be created.").arg(dataDir)); /* fall through, back to choosing screen */ } } |