Browse Source

Merge pull request #3205 from Diapolo/intro

[Qt] use tr() instead of QObject::tr() in intro.cpp
pull/145/head
Wladimir J. van der Laan 11 years ago
parent
commit
07131220f3
  1. 4
      src/qt/intro.cpp

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

Loading…
Cancel
Save