Fix capitalization of group box titles

Consistently use book case

Change-Id: Ia0e382255fe2f311a1bd9a380f4bf8af2320c215
Reviewed-by: Alessandro Portale <alessandro.portale@qt.io>
This commit is contained in:
Eike Ziller
2024-05-14 14:54:45 +02:00
parent df96d78e68
commit 3a60ab1c91
23 changed files with 77 additions and 69 deletions

View File

@@ -106,9 +106,10 @@ ClangFormatGlobalConfigWidget::ClangFormatGlobalConfigWidget(ICodeStylePreferenc
QWidget *globalSettingsGroupBoxWidget = nullptr;
// clang-format off
Group globalSettingsGroupBox {
bindTo(&globalSettingsGroupBoxWidget),
title(Tr::tr("ClangFormat settings:")),
title(Tr::tr("ClangFormat Settings:")),
Column {
m_useGlobalSettings,
Form {
@@ -127,6 +128,7 @@ ClangFormatGlobalConfigWidget::ClangFormatGlobalConfigWidget(ICodeStylePreferenc
globalSettingsGroupBox,
noMargin
}.attachTo(this);
// clang-format on
initCheckBoxes();
initIndentationOrFormattingCombobox();