diff options
author | fanquake <fanquake@gmail.com> | 2012-07-23 11:59:02 +0800 |
---|---|---|
committer | fanquake <fanquake@gmail.com> | 2012-07-23 11:59:02 +0800 |
commit | 951f7d35d6288063c317be85981300a319d313a6 (patch) | |
tree | 6bd3034ab7022f5dde4e93dd756dc4db4f4b7769 /src/qt/bitcoin.cpp | |
parent | 0bf30d2b3339b96c3fa96195213094665870a4c9 (diff) |
Fix Typo
Diffstat (limited to 'src/qt/bitcoin.cpp')
-rw-r--r-- | src/qt/bitcoin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qt/bitcoin.cpp b/src/qt/bitcoin.cpp index f9f5115cd0..6bdac2ad70 100644 --- a/src/qt/bitcoin.cpp +++ b/src/qt/bitcoin.cpp @@ -109,7 +109,7 @@ static std::string Translate(const char* psz) static void handleRunawayException(std::exception *e) { PrintExceptionContinue(e, "Runaway exception"); - QMessageBox::critical(0, "Runaway exception", BitcoinGUI::tr("A fatal error occured. Bitcoin can no longer continue safely and will quit.") + QString("\n\n") + QString::fromStdString(strMiscWarning)); + QMessageBox::critical(0, "Runaway exception", BitcoinGUI::tr("A fatal error occurred. Bitcoin can no longer continue safely and will quit.") + QString("\n\n") + QString::fromStdString(strMiscWarning)); exit(1); } |