diff --git a/src/core/loader/loader.h b/src/core/loader/loader.h index 8c8732d19..9095a408f 100644 --- a/src/core/loader/loader.h +++ b/src/core/loader/loader.h @@ -258,7 +258,7 @@ public: * @param title Referencec to store the application title into * @param ResultStatus result of function */ - virtual ResultStatus ReadTitleLong([[maybe_unused]]std::string& title) { + virtual ResultStatus ReadTitleLong([[maybe_unused]] std::string& title) { return ResultStatus::ErrorNotImplemented; } diff --git a/src/lime_qt/main.cpp b/src/lime_qt/main.cpp index 64184f8d9..8b7fe0d7f 100644 --- a/src/lime_qt/main.cpp +++ b/src/lime_qt/main.cpp @@ -3061,11 +3061,14 @@ void GMainWindow::UpdateWindowTitle() { if (game_title_long.isEmpty()) { setWindowTitle(QStringLiteral("Lime %1").arg(full_name)); } else { - setWindowTitle(QStringLiteral("Lime %1 | %2").arg(full_name, game_title_long)); + setWindowTitle(QStringLiteral("Lime %1 | %2") + .arg(full_name, game_title_long)); render_window->setWindowTitle( - QStringLiteral("Lime %1 | %2 | %3").arg(full_name, game_title_long, tr("Primary Window"))); + QStringLiteral("Lime %1 | %2 | %3") + .arg(full_name, game_title_long, tr("Primary Window"))); secondary_window->setWindowTitle( - QStringLiteral("Lime %1 | %2 | %3").arg(full_name, game_title_long, tr("Secondary Window"))); + QStringLiteral("Lime %1 | %2 | %3") + .arg(full_name, game_title_long, tr("Secondary Window"))); } }