kdeui: remove toolbar directory from appicon resource

no icons are installed there

Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
This commit is contained in:
Ivailo Monev 2023-06-27 16:53:34 +03:00
parent 84de49081c
commit c29db4dd9c
2 changed files with 2 additions and 4 deletions

View file

@ -510,8 +510,6 @@ bool KIconLoaderPrivate::initIconThemes()
// Insert application specific themes at the top.
mpDirs->addResourceType("appicon", "data", appname + "/pics/");
// ################## KDE5: consider removing the toolbar directory
mpDirs->addResourceType("appicon", "data", appname + "/toolbar/");
// Add legacy icon dirs.
QStringList dirs;

View file

@ -60,9 +60,9 @@ void KUiServerJobTracker::Private::_k_killJob()
}
KUiServerJobTracker::KUiServerJobTracker(QObject *parent)
: KJobTrackerInterface(parent), d(new Private(this))
: KJobTrackerInterface(parent),
d(new Private(this))
{
}
KUiServerJobTracker::~KUiServerJobTracker()