diff options
author | Philip Kaufmann <phil.kaufmann@t-online.de> | 2013-11-05 17:27:18 +0100 |
---|---|---|
committer | Philip Kaufmann <phil.kaufmann@t-online.de> | 2013-11-05 17:29:16 +0100 |
commit | 011e1c060aa6aa501d9892f60986c33dcfa47257 (patch) | |
tree | aa7cc424f923d3650b89d3219f6bb6bd10f534f9 /src/qt | |
parent | c82cddcc5565867fa1ccb8b2ab1bec3e1058de96 (diff) |
[Qt] use tr() instead of QObject::tr() in intro.cpp
Diffstat (limited to 'src/qt')
-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 60ddbc1e3b..e7e7682258 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 */ } } |