diff options
author | Lioncash <mathew1800@gmail.com> | 2019-05-25 02:53:36 +0200 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2019-05-25 03:27:12 +0200 |
commit | f5d416e07147e6667f620dd1a3f32b71f1f37099 (patch) | |
tree | 6b633b1c2b7fcd6947e203c1ab87f4312e574a19 /src | |
parent | yuzu/main: Specify string conversions where applicable (diff) | |
download | yuzu-f5d416e07147e6667f620dd1a3f32b71f1f37099.tar yuzu-f5d416e07147e6667f620dd1a3f32b71f1f37099.tar.gz yuzu-f5d416e07147e6667f620dd1a3f32b71f1f37099.tar.bz2 yuzu-f5d416e07147e6667f620dd1a3f32b71f1f37099.tar.lz yuzu-f5d416e07147e6667f620dd1a3f32b71f1f37099.tar.xz yuzu-f5d416e07147e6667f620dd1a3f32b71f1f37099.tar.zst yuzu-f5d416e07147e6667f620dd1a3f32b71f1f37099.zip |
Diffstat (limited to 'src')
-rw-r--r-- | src/yuzu/applets/error.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/yuzu/applets/error.cpp b/src/yuzu/applets/error.cpp index 106dde9e2..97435592e 100644 --- a/src/yuzu/applets/error.cpp +++ b/src/yuzu/applets/error.cpp @@ -32,8 +32,9 @@ void QtErrorDisplay::ShowErrorWithTimestamp(ResultCode error, std::chrono::secon emit MainWindowDisplayError( tr("An error occured on %1 at %2.\nPlease try again or contact the " "developer of the software.\n\nError Code: %3-%4 (0x%5)") - .arg(QDateTime::fromSecsSinceEpoch(time.count()).toString("dddd, MMMM d, yyyy")) - .arg(QDateTime::fromSecsSinceEpoch(time.count()).toString("h:mm:ss A")) + .arg(QDateTime::fromSecsSinceEpoch(time.count()) + .toString(QStringLiteral("dddd, MMMM d, yyyy"))) + .arg(QDateTime::fromSecsSinceEpoch(time.count()).toString(QStringLiteral("h:mm:ss A"))) .arg(static_cast<u32>(error.module.Value()) + 2000, 4, 10, QChar::fromLatin1('0')) .arg(error.description, 4, 10, QChar::fromLatin1('0')) .arg(error.raw, 8, 16, QChar::fromLatin1('0'))); |