style: Add braces to all control flow statements (#6887)

* style: Add braces to all control flow statements

  Standardize code style by adding explicit braces to all single-statement
  control flow blocks (if, else, for, while) across the entire codebase.

  Also documents the InsertBraces clang-format option (requires v15+) for
  future automated enforcement.

* InsertBraces-check-enabled
This commit is contained in:
DawnFire42 2026-05-16 13:19:53 -04:00 committed by GitHub
parent 7153f7d4c1
commit aadee34238
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
173 changed files with 2725 additions and 1461 deletions

View file

@ -24,14 +24,18 @@ bool LineEditUnfocusable::isUnfocusShortcut(QKeyEvent *event)
QString modifier;
QString keyNoMod;
if (event->modifiers() & Qt::ShiftModifier)
if (event->modifiers() & Qt::ShiftModifier) {
modifier += "Shift+";
if (event->modifiers() & Qt::ControlModifier)
}
if (event->modifiers() & Qt::ControlModifier) {
modifier += "Ctrl+";
if (event->modifiers() & Qt::AltModifier)
}
if (event->modifiers() & Qt::AltModifier) {
modifier += "Alt+";
if (event->modifiers() & Qt::MetaModifier)
}
if (event->modifiers() & Qt::MetaModifier) {
modifier += "Meta+";
}
keyNoMod = QKeySequence(event->key()).toString();
@ -39,8 +43,9 @@ bool LineEditUnfocusable::isUnfocusShortcut(QKeyEvent *event)
QList<QKeySequence> unfocusShortcut = SettingsCache::instance().shortcuts().getShortcut("Player/unfocusTextBox");
for (const auto &unfocusKey : unfocusShortcut) {
if (key.matches(unfocusKey) == QKeySequence::ExactMatch)
if (key.matches(unfocusKey) == QKeySequence::ExactMatch) {
return true;
}
}
return false;
}
@ -79,10 +84,12 @@ void SearchLineEdit::keyPressEvent(QKeyEvent *event)
static const QVector<Qt::Key> forwardWhenEmpty = {Qt::Key_Home, Qt::Key_End};
Qt::Key key = static_cast<Qt::Key>(event->key());
if (treeView) {
if (forwardToTreeView.contains(key))
if (forwardToTreeView.contains(key)) {
QCoreApplication::sendEvent(treeView, event);
if (text().isEmpty() && forwardWhenEmpty.contains(key))
}
if (text().isEmpty() && forwardWhenEmpty.contains(key)) {
QCoreApplication::sendEvent(treeView, event);
}
}
LineEditUnfocusable::keyPressEvent(event);
}

View file

@ -46,8 +46,9 @@ void LineEditCompleter::keyPressEvent(QKeyEvent *event)
int lastIndexof = qMax(0, textValue.lastIndexOf(" "));
QString finalString = textValue.left(lastIndexof);
// Add a space if there's a word
if (finalString != "")
if (finalString != "") {
finalString += " ";
}
setText(finalString);
return;
}
@ -121,12 +122,14 @@ void LineEditCompleter::setCompleter(QCompleter *completer)
void LineEditCompleter::setCompletionList(QStringList completionList)
{
if (!c || c->popup()->isVisible())
if (!c || c->popup()->isVisible()) {
return;
}
QStringListModel *model;
model = (QStringListModel *)(c->model());
if (model == NULL)
if (model == NULL) {
model = new QStringListModel();
}
model->setStringList(completionList);
}