aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/projectexplorer/buildprogress.cpp
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@nokia.com>2009-10-05 11:06:05 +0200
committerFriedemann Kleint <Friedemann.Kleint@nokia.com>2009-10-05 11:06:05 +0200
commit5948e284bb576aa21b6adb3031a7a891861ffd06 (patch)
treea42c232ed31bda6b3d4bfbda2c62d8688776a36e /src/plugins/projectexplorer/buildprogress.cpp
parent406d35acd609c5bde60dab9dfd27971a03b0fc0a (diff)
Rename namespace Core::Utils into Utils
Also move Designer::Internal::FormWindowEditor -> Designer::FormWindowEditor.
Diffstat (limited to 'src/plugins/projectexplorer/buildprogress.cpp')
-rw-r--r--src/plugins/projectexplorer/buildprogress.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/plugins/projectexplorer/buildprogress.cpp b/src/plugins/projectexplorer/buildprogress.cpp
index 9c6ab93799..edc3576b71 100644
--- a/src/plugins/projectexplorer/buildprogress.cpp
+++ b/src/plugins/projectexplorer/buildprogress.cpp
@@ -62,12 +62,12 @@ BuildProgress::BuildProgress(TaskWindow *taskWindow)
// ### TODO this setup should be done by style
QFont f = this->font();
- f.setPointSizeF(StyleHelper::sidebarFontSize());
+ f.setPointSizeF(Utils::StyleHelper::sidebarFontSize());
f.setBold(true);
m_errorLabel->setFont(f);
m_warningLabel->setFont(f);
- m_errorLabel->setPalette(StyleHelper::sidebarFontPalette(m_errorLabel->palette()));
- m_warningLabel->setPalette(StyleHelper::sidebarFontPalette(m_warningLabel->palette()));
+ m_errorLabel->setPalette(Utils::StyleHelper::sidebarFontPalette(m_errorLabel->palette()));
+ m_warningLabel->setPalette(Utils::StyleHelper::sidebarFontPalette(m_warningLabel->palette()));
m_errorIcon->setAlignment(Qt::AlignRight);
m_warningIcon->setAlignment(Qt::AlignRight);