Merge pull request #3205 from Diapolo/intro

[Qt] use tr() instead of QObject::tr() in intro.cpp
This commit is contained in:
Wladimir J. van der Laan 2013-11-05 09:02:13 -08:00
commit 07131220f3
1 changed files with 2 additions and 2 deletions

View File

@ -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 */
}
}