aboutsummaryrefslogtreecommitdiff
path: root/src/qt/intro.cpp
diff options
context:
space:
mode:
authorPhilip Kaufmann <phil.kaufmann@t-online.de>2013-11-05 17:27:18 +0100
committerPhilip Kaufmann <phil.kaufmann@t-online.de>2013-11-05 17:29:16 +0100
commit011e1c060aa6aa501d9892f60986c33dcfa47257 (patch)
treeaa7cc424f923d3650b89d3219f6bb6bd10f534f9 /src/qt/intro.cpp
parentc82cddcc5565867fa1ccb8b2ab1bec3e1058de96 (diff)
downloadbitcoin-011e1c060aa6aa501d9892f60986c33dcfa47257.tar.xz
[Qt] use tr() instead of QObject::tr() in intro.cpp
Diffstat (limited to 'src/qt/intro.cpp')
-rw-r--r--src/qt/intro.cpp4
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 */
}
}