summaryrefslogtreecommitdiff
path: root/src/plugins/coreplugin/manhattanstyle.cpp
diff options
context:
space:
mode:
authorAlessandro Portale <alessandro.portale@qt.io>2016-10-07 12:44:39 +0200
committerAlessandro Portale <alessandro.portale@qt.io>2016-10-07 13:20:25 +0000
commit6526e28bd07a93dcfb34f772857439ee7cfbea5d (patch)
tree30189ddc302e7813c61c04d99d198a90c8fe6ed3 /src/plugins/coreplugin/manhattanstyle.cpp
parent27e03e6fb6094a57d11f710fd56d9cd2bc439394 (diff)
downloadqt-creator-6526e28bd07a93dcfb34f772857439ee7cfbea5d.tar.gz
Core: Fix some Classic theme regressions
Commit 15fbfaf2e94b72cfd54bb0bd6f2b9ab87b870795 moved many images into utils, but some paths in the source were not adjusted accordingly. Change-Id: I6d32754c41455271c0bfcedf0777a38fbeca67ab Reviewed-by: Erik Verbruggen <erik.verbruggen@qt.io>
Diffstat (limited to 'src/plugins/coreplugin/manhattanstyle.cpp')
-rw-r--r--src/plugins/coreplugin/manhattanstyle.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/coreplugin/manhattanstyle.cpp b/src/plugins/coreplugin/manhattanstyle.cpp
index 7f283049a3..94ea044f3e 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);