diff --git a/plugins/quickopen/expandingtree/expandingwidgetmodel.cpp b/plugins/quickopen/expandingtree/expandingwidgetmodel.cpp --- a/plugins/quickopen/expandingtree/expandingwidgetmodel.cpp +++ b/plugins/quickopen/expandingtree/expandingwidgetmodel.cpp @@ -441,10 +441,10 @@ void ExpandingWidgetModel::cacheIcons() const { if( m_expandedIcon.isNull() ) - m_expandedIcon = KIconLoader::global()->loadIcon(QStringLiteral("arrow-down"), KIconLoader::Small, 10); + m_expandedIcon = QIcon::fromTheme(QStringLiteral("arrow-down")); if( m_collapsedIcon.isNull() ) - m_collapsedIcon = KIconLoader::global()->loadIcon(QStringLiteral("arrow-right"), KIconLoader::Small, 10); + m_collapsedIcon = QIcon::fromTheme(QStringLiteral("arrow-right")); } QList mergeCustomHighlighting( int leftSize, const QList& left, int rightSize, const QList& right )