diff options
| author | Philip Kaufmann <[email protected]> | 2013-11-05 17:27:18 +0100 |
|---|---|---|
| committer | Philip Kaufmann <[email protected]> | 2013-11-05 17:29:16 +0100 |
| commit | 011e1c060aa6aa501d9892f60986c33dcfa47257 (patch) | |
| tree | aa7cc424f923d3650b89d3219f6bb6bd10f534f9 /src/qt/intro.cpp | |
| parent | qt: remove unused signal from addresstablemodel (diff) | |
| download | discoin-011e1c060aa6aa501d9892f60986c33dcfa47257.tar.xz discoin-011e1c060aa6aa501d9892f60986c33dcfa47257.zip | |
[Qt] use tr() instead of QObject::tr() in intro.cpp
Diffstat (limited to 'src/qt/intro.cpp')
| -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 */ } } |