diff --git a/src/plugins/coreplugin/manhattanstyle.cpp b/src/plugins/coreplugin/manhattanstyle.cpp index 7f283049a3b..94ea044f3eb 100644 --- a/src/plugins/coreplugin/manhattanstyle.cpp +++ b/src/plugins/coreplugin/manhattanstyle.cpp @@ -466,9 +466,9 @@ void ManhattanStyle::drawPrimitive(PrimitiveElement element, const QStyleOption painter->fillRect(backgroundRect, option->palette.base()); static const QImage bg(StyleHelper::dpiSpecificImageFile( - QLatin1String(":/core/images/inputfield.png"))); + QLatin1String(":/utils/images/inputfield.png"))); static const QImage bg_disabled(StyleHelper::dpiSpecificImageFile( - QLatin1String(":/core/images/inputfield_disabled.png"))); + QLatin1String(":/utils/images/inputfield_disabled.png"))); StyleHelper::drawCornerImage(enabled ? bg : bg_disabled, painter, option->rect, 5, 5, 5, 5); diff --git a/src/plugins/coreplugin/outputpanemanager.cpp b/src/plugins/coreplugin/outputpanemanager.cpp index 6f2adf89d29..034271a750b 100644 --- a/src/plugins/coreplugin/outputpanemanager.cpp +++ b/src/plugins/coreplugin/outputpanemanager.cpp @@ -693,26 +693,26 @@ void OutputPaneToggleButton::paintEvent(QPaintEvent*) const QImage *image = 0; if (isDown()) { static const QImage pressed( - StyleHelper::dpiSpecificImageFile(":/core/images/panel_button_pressed.png")); + StyleHelper::dpiSpecificImageFile(":/utils/images/panel_button_pressed.png")); image = &pressed; } else if (isChecked()) { if (hovered) { static const QImage checkedHover( - StyleHelper::dpiSpecificImageFile(":/core/images/panel_button_checked_hover.png")); + StyleHelper::dpiSpecificImageFile(":/utils/images/panel_button_checked_hover.png")); image = &checkedHover; } else { static const QImage checked( - StyleHelper::dpiSpecificImageFile(":/core/images/panel_button_checked.png")); + StyleHelper::dpiSpecificImageFile(":/utils/images/panel_button_checked.png")); image = &checked; } } else { if (hovered) { static const QImage hover( - StyleHelper::dpiSpecificImageFile(":/core/images/panel_button_hover.png")); + StyleHelper::dpiSpecificImageFile(":/utils/images/panel_button_hover.png")); image = &hover; } else { static const QImage button( - StyleHelper::dpiSpecificImageFile(":/core/images/panel_button.png")); + StyleHelper::dpiSpecificImageFile(":/utils/images/panel_button.png")); image = &button; } } @@ -794,7 +794,7 @@ void OutputPaneManageButton::paintEvent(QPaintEvent*) { QPainter p(this); if (!creatorTheme()->flag(Theme::FlatToolBars)) { - static const QImage button(StyleHelper::dpiSpecificImageFile(QStringLiteral(":/core/images/panel_manage_button.png"))); + static const QImage button(StyleHelper::dpiSpecificImageFile(QStringLiteral(":/utils/images/panel_manage_button.png"))); StyleHelper::drawCornerImage(button, &p, rect(), buttonBorderWidth, buttonBorderWidth, buttonBorderWidth, buttonBorderWidth); } QStyle *s = style(); diff --git a/src/plugins/coreplugin/progressmanager/progressbar.cpp b/src/plugins/coreplugin/progressmanager/progressbar.cpp index b1c9930086b..a1394e2c429 100644 --- a/src/plugins/coreplugin/progressmanager/progressbar.cpp +++ b/src/plugins/coreplugin/progressmanager/progressbar.cpp @@ -297,7 +297,7 @@ void ProgressBar::paintEvent(QPaintEvent *) p.fillRect(inner, c); } else { const static QImage bar(StyleHelper::dpiSpecificImageFile( - QLatin1String(":/core/images/progressbar.png"))); + QLatin1String(":/utils/images/progressbar.png"))); StyleHelper::drawCornerImage(bar, &p, rect, 3, 3, 3, 3); // Draw line and shadow after the gradient fill