From d06bb8b517afe956b59aed99122f80d3809498a0 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Sun, 12 Oct 2014 17:52:16 -0500 Subject: Bring stop, lock, exit, and run icons into XDG compliance --- languages/cpp/debugger/debuggerpart.cpp | 4 ++-- languages/cpp/problemreporter.cpp | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'languages/cpp') diff --git a/languages/cpp/debugger/debuggerpart.cpp b/languages/cpp/debugger/debuggerpart.cpp index 3cae3762..380e7ac5 100644 --- a/languages/cpp/debugger/debuggerpart.cpp +++ b/languages/cpp/debugger/debuggerpart.cpp @@ -111,7 +111,7 @@ DebuggerPart::DebuggerPart( TQObject *parent, const char *name, const TQStringLi "breakpoint item allows you to change " "the breakpoint and will take you " "to the source in the editor window.")); - gdbBreakpointWidget->setIcon( SmallIcon("stop") ); + gdbBreakpointWidget->setIcon( SmallIcon("process-stop") ); mainWindow()->embedOutputView(gdbBreakpointWidget, i18n("Breakpoints"), i18n("Debugger breakpoints")); variableWidget = new VariableWidget( controller, @@ -207,7 +207,7 @@ DebuggerPart::DebuggerPart( TQObject *parent, const char *name, const TQStringLi action->setEnabled(false); - action = new TDEAction(i18n("Sto&p"), "stop", 0, + action = new TDEAction(i18n("Sto&p"), "process-stop", 0, this, TQT_SLOT(slotStop()), actionCollection(), "debug_stop"); action->setToolTip( i18n("Stop debugger") ); diff --git a/languages/cpp/problemreporter.cpp b/languages/cpp/problemreporter.cpp index eed7a5b6..c4143d03 100644 --- a/languages/cpp/problemreporter.cpp +++ b/languages/cpp/problemreporter.cpp @@ -162,7 +162,7 @@ m_markIface( 0 ) { if ( KTextEditor::MarkInterfaceExtension* iface = dynamic_cast( it.current() ) ) { - iface->setPixmap( KTextEditor::MarkInterface::markType07, SmallIcon("stop") ); + iface->setPixmap( KTextEditor::MarkInterface::markType07, SmallIcon("process-stop") ); } ++it; } @@ -404,7 +404,7 @@ void ProblemReporter::slotPartAdded( KParts::Part* part ) if( !iface ) return; - iface->setPixmap( KTextEditor::MarkInterface::markType07, SmallIcon("stop") ); + iface->setPixmap( KTextEditor::MarkInterface::markType07, SmallIcon("process-stop") ); } TQString ProblemReporter::levelToString( int level ) const -- cgit v1.2.1