mirror of
https://github.com/Lime3DS/Lime3DS
synced 2024-12-25 16:42:39 -06:00
Fix clang-format errors.
This commit is contained in:
parent
6b34041b06
commit
99fd9c68a0
2 changed files with 7 additions and 4 deletions
|
@ -258,7 +258,7 @@ public:
|
||||||
* @param title Referencec to store the application title into
|
* @param title Referencec to store the application title into
|
||||||
* @param ResultStatus result of function
|
* @param ResultStatus result of function
|
||||||
*/
|
*/
|
||||||
virtual ResultStatus ReadTitleLong([[maybe_unused]]std::string& title) {
|
virtual ResultStatus ReadTitleLong([[maybe_unused]] std::string& title) {
|
||||||
return ResultStatus::ErrorNotImplemented;
|
return ResultStatus::ErrorNotImplemented;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -3061,11 +3061,14 @@ void GMainWindow::UpdateWindowTitle() {
|
||||||
if (game_title_long.isEmpty()) {
|
if (game_title_long.isEmpty()) {
|
||||||
setWindowTitle(QStringLiteral("Lime %1").arg(full_name));
|
setWindowTitle(QStringLiteral("Lime %1").arg(full_name));
|
||||||
} else {
|
} 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(
|
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(
|
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")));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue