Utils: Fix function name case StyleHelper::Uifont -> uifont

Oopsie.

Change-Id: I66c4b56f43c50e3dfc5c17ffd95d778d496b77f2
Reviewed-by: Cristian Adam <cristian.adam@qt.io>
Reviewed-by: <github-actions-qt-creator@cristianadam.eu>
This commit is contained in:
Alessandro Portale
2023-12-06 13:02:09 +01:00
parent a737ddd931
commit a4a27b8931
19 changed files with 30 additions and 30 deletions

View File

@@ -570,7 +570,7 @@ public:
selectorView->setAutoFillBackground(true);
auto activeLabel = new QLabel(Tr::tr("Active Project"));
activeLabel->setFont(StyleHelper::UiFont(StyleHelper::UiElementH4));
activeLabel->setFont(StyleHelper::uiFont(StyleHelper::UiElementH4));
auto innerLayout = new QVBoxLayout;
innerLayout->setSpacing(10);
@@ -903,7 +903,7 @@ void SelectorDelegate::paint(QPainter *painter, const QStyleOptionViewItem &opti
case 2: {
QColor col = creatorTheme()->color(Theme::TextColorNormal);
opt.palette.setColor(QPalette::Text, col);
opt.font = StyleHelper::UiFont(StyleHelper::UiElementH4);
opt.font = StyleHelper::uiFont(StyleHelper::UiElementH4);
break;
}
}