diff --git a/src/plugins/projectexplorer/images/clean.png b/src/plugins/projectexplorer/images/clean.png deleted file mode 100644 index ab5e07ef797..00000000000 Binary files a/src/plugins/projectexplorer/images/clean.png and /dev/null differ diff --git a/src/plugins/projectexplorer/images/clean_small.png b/src/plugins/projectexplorer/images/clean_small.png deleted file mode 100644 index 6a6d16718ce..00000000000 Binary files a/src/plugins/projectexplorer/images/clean_small.png and /dev/null differ diff --git a/src/plugins/projectexplorer/projectexplorer.cpp b/src/plugins/projectexplorer/projectexplorer.cpp index f860f51e702..7644bf03f04 100644 --- a/src/plugins/projectexplorer/projectexplorer.cpp +++ b/src/plugins/projectexplorer/projectexplorer.cpp @@ -853,9 +853,7 @@ bool ProjectExplorerPlugin::initialize(const QStringList &arguments, QString *er msessionContextMenu->addAction(cmd, Constants::G_SESSION_REBUILD); // clean session - QIcon cleanIcon = Icons::CLEAN.icon(); - cleanIcon.addPixmap(Icons::CLEAN_SMALL.pixmap()); - dd->m_cleanSessionAction = new QAction(cleanIcon, tr("Clean All"), this); + dd->m_cleanSessionAction = new QAction(Icons::CLEAN.icon(), tr("Clean All"), this); cmd = ActionManager::registerAction(dd->m_cleanSessionAction, Constants::CLEANSESSION); mbuild->addAction(cmd, Constants::G_BUILD_CLEAN); msessionContextMenu->addAction(cmd, Constants::G_SESSION_REBUILD); diff --git a/src/plugins/projectexplorer/projectexplorer.qrc b/src/plugins/projectexplorer/projectexplorer.qrc index 1060cbc79f2..7338b5ce784 100644 --- a/src/plugins/projectexplorer/projectexplorer.qrc +++ b/src/plugins/projectexplorer/projectexplorer.qrc @@ -2,8 +2,6 @@ images/build_small.png images/category_buildrun.png - images/clean.png - images/clean_small.png images/closetab.png images/debugger_start.png images/debugger_start@2x.png diff --git a/src/plugins/projectexplorer/projectexplorericons.h b/src/plugins/projectexplorer/projectexplorericons.h index 0ddbd2548f7..2d1284cad5c 100644 --- a/src/plugins/projectexplorer/projectexplorericons.h +++ b/src/plugins/projectexplorer/projectexplorericons.h @@ -37,10 +37,8 @@ const Utils::Icon BUILD_FLAT({ {QLatin1String(":/projectexplorer/images/build_hammerhead_mask.png"), Utils::Theme::IconsBuildHammerHeadColor}}); const Utils::Icon BUILD_SMALL( QLatin1String(":/projectexplorer/images/build_small.png")); -const Utils::Icon CLEAN( - QLatin1String(":/projectexplorer/images/clean.png")); -const Utils::Icon CLEAN_SMALL( - QLatin1String(":/projectexplorer/images/clean_small.png")); +const Utils::Icon CLEAN({ + {QLatin1String(":/core/images/clean_pane_small.png"), Utils::Theme::PanelTextColorMid}}, Utils::Icon::Tint); const Utils::Icon REBUILD({ {QLatin1String(":/projectexplorer/images/rebuildhammerhandles.png"), Utils::Theme::IconsBuildHammerHandleColor}, {QLatin1String(":/projectexplorer/images/rebuildhammerheads.png"), Utils::Theme::IconsBuildHammerHeadColor}}, Utils::Icon::Tint);