|
|
|
@ -25,8 +25,8 @@ void QtErrorDisplay::ShowError(Result error, FinishedCallback finished) const { |
|
|
|
callback = std::move(finished); |
|
|
|
emit MainWindowDisplayError( |
|
|
|
tr("Error Code: %1-%2 (0x%3)") |
|
|
|
.arg(static_cast<u32>(error.module.Value()) + 2000, 4, 10, QChar::fromLatin1('0')) |
|
|
|
.arg(error.description, 4, 10, QChar::fromLatin1('0')) |
|
|
|
.arg(static_cast<u32>(error.GetModule()) + 2000, 4, 10, QChar::fromLatin1('0')) |
|
|
|
.arg(error.GetDescription(), 4, 10, QChar::fromLatin1('0')) |
|
|
|
.arg(error.raw, 8, 16, QChar::fromLatin1('0')), |
|
|
|
tr("An error has occurred.\nPlease try again or contact the developer of the software.")); |
|
|
|
} |
|
|
|
@ -38,8 +38,8 @@ void QtErrorDisplay::ShowErrorWithTimestamp(Result error, std::chrono::seconds t |
|
|
|
const QDateTime date_time = QDateTime::fromSecsSinceEpoch(time.count()); |
|
|
|
emit MainWindowDisplayError( |
|
|
|
tr("Error Code: %1-%2 (0x%3)") |
|
|
|
.arg(static_cast<u32>(error.module.Value()) + 2000, 4, 10, QChar::fromLatin1('0')) |
|
|
|
.arg(error.description, 4, 10, QChar::fromLatin1('0')) |
|
|
|
.arg(static_cast<u32>(error.GetModule()) + 2000, 4, 10, QChar::fromLatin1('0')) |
|
|
|
.arg(error.GetDescription(), 4, 10, QChar::fromLatin1('0')) |
|
|
|
.arg(error.raw, 8, 16, QChar::fromLatin1('0')), |
|
|
|
tr("An error occurred on %1 at %2.\nPlease try again or contact the developer of the " |
|
|
|
"software.") |
|
|
|
@ -53,8 +53,8 @@ void QtErrorDisplay::ShowCustomErrorText(Result error, std::string dialog_text, |
|
|
|
callback = std::move(finished); |
|
|
|
emit MainWindowDisplayError( |
|
|
|
tr("Error Code: %1-%2 (0x%3)") |
|
|
|
.arg(static_cast<u32>(error.module.Value()) + 2000, 4, 10, QChar::fromLatin1('0')) |
|
|
|
.arg(error.description, 4, 10, QChar::fromLatin1('0')) |
|
|
|
.arg(static_cast<u32>(error.GetModule()) + 2000, 4, 10, QChar::fromLatin1('0')) |
|
|
|
.arg(error.GetDescription(), 4, 10, QChar::fromLatin1('0')) |
|
|
|
.arg(error.raw, 8, 16, QChar::fromLatin1('0')), |
|
|
|
tr("An error has occurred.\n\n%1\n\n%2") |
|
|
|
.arg(QString::fromStdString(dialog_text)) |
|
|
|
|