Index: debugger/breakpoint/breakpointmodel.cpp =================================================================== --- debugger/breakpoint/breakpointmodel.cpp +++ debugger/breakpoint/breakpointmodel.cpp @@ -366,25 +366,25 @@ const QPixmap* BreakpointModel::breakpointPixmap() { - static QPixmap pixmap=QIcon::fromTheme(QStringLiteral("script-error")).pixmap(QSize(22,22), QIcon::Active, QIcon::Off); + static QPixmap pixmap=QIcon::fromTheme(QStringLiteral("breakpoint")).pixmap(QSize(16,16), QIcon::Active, QIcon::Off); return &pixmap; } const QPixmap* BreakpointModel::pendingBreakpointPixmap() { - static QPixmap pixmap=QIcon::fromTheme(QStringLiteral("script-error")).pixmap(QSize(22,22), QIcon::Normal, QIcon::Off); + static QPixmap pixmap=QIcon::fromTheme(QStringLiteral("breakpoint")).pixmap(QSize(16,16), QIcon::Normal, QIcon::Off); return &pixmap; } const QPixmap* BreakpointModel::reachedBreakpointPixmap() { - static QPixmap pixmap=QIcon::fromTheme(QStringLiteral("script-error")).pixmap(QSize(22,22), QIcon::Selected, QIcon::Off); + static QPixmap pixmap=QIcon::fromTheme(QStringLiteral("breakpoint")).pixmap(QSize(16,16), QIcon::Selected, QIcon::Off); return &pixmap; } const QPixmap* BreakpointModel::disabledBreakpointPixmap() { - static QPixmap pixmap=QIcon::fromTheme(QStringLiteral("script-error")).pixmap(QSize(22,22), QIcon::Disabled, QIcon::Off); + static QPixmap pixmap=QIcon::fromTheme(QStringLiteral("breakpoint")).pixmap(QSize(16,16), QIcon::Disabled, QIcon::Off); return &pixmap; } Index: debugger/interfaces/ibreakpointcontroller.cpp =================================================================== --- debugger/interfaces/ibreakpointcontroller.cpp +++ debugger/interfaces/ibreakpointcontroller.cpp @@ -96,7 +96,7 @@ break; } if (ev) { - ev->setPixmap(QIcon::fromTheme(QStringLiteral("script-error")).pixmap(QSize(22,22))); + ev->setPixmap(QIcon::fromTheme(QStringLiteral("breakpoint")).pixmap(QSize(22,22))); // TODO: Port //ev->setComponentName(ICore::self()->aboutData().componentName()); ev->sendEvent(); Index: pics/CMakeLists.txt =================================================================== --- pics/CMakeLists.txt +++ pics/CMakeLists.txt @@ -1,6 +1,3 @@ -########### install files ############### - -set( kdevplatform_icon_dirs 22x22 ) - -install( DIRECTORY ${kdevplatform_icon_dirs} DESTINATION ${KDE_INSTALL_ICONDIR}/hicolor PATTERN .svn EXCLUDE) +install(DIRECTORY 22x22 DESTINATION ${KDE_INSTALL_ICONDIR}/hicolor) +install(DIRECTORY 16x16 DESTINATION ${KDE_INSTALL_ICONDIR}/hicolor) Index: shell/debugcontroller.cpp =================================================================== --- shell/debugcontroller.cpp +++ shell/debugcontroller.cpp @@ -278,7 +278,7 @@ connect(action, &QAction::triggered, this, &DebugController::stepOut); ac->addAction(QStringLiteral("debug_stepout"), action); - m_toggleBreakpoint = action = new QAction(QIcon::fromTheme(QStringLiteral("script-error")), i18n("Toggle Breakpoint"), this); + m_toggleBreakpoint = action = new QAction(QIcon::fromTheme(QStringLiteral("breakpoint")), i18n("Toggle Breakpoint"), this); ac->setDefaultShortcut( action, i18n("Ctrl+Alt+B") ); action->setToolTip(i18n("Toggle breakpoint")); action->setWhatsThis(i18n("Toggles the breakpoint at the current line in editor."));