Просмотр исходного кода

yuzu/applets/error: Specify string conversions explicitly

Allows the error applet to build successfully with implicit string
conversions disabled.
Lioncash 7 лет назад
Родитель
Сommit
f5d416e071
1 измененных файлов с 3 добавлено и 2 удалено
  1. 3 2
      src/yuzu/applets/error.cpp

+ 3 - 2
src/yuzu/applets/error.cpp

@@ -32,8 +32,9 @@ void QtErrorDisplay::ShowErrorWithTimestamp(ResultCode error, std::chrono::secon
     emit MainWindowDisplayError(
     emit MainWindowDisplayError(
         tr("An error occured on %1 at %2.\nPlease try again or contact the "
         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)")
            "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(static_cast<u32>(error.module.Value()) + 2000, 4, 10, QChar::fromLatin1('0'))
             .arg(error.description, 4, 10, QChar::fromLatin1('0'))
             .arg(error.description, 4, 10, QChar::fromLatin1('0'))
             .arg(error.raw, 8, 16, QChar::fromLatin1('0')));
             .arg(error.raw, 8, 16, QChar::fromLatin1('0')));