diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-12 17:52:16 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-12 17:52:16 -0500 |
commit | d06bb8b517afe956b59aed99122f80d3809498a0 (patch) | |
tree | 9a14247bc1749189777db14187c06d827f2edcfa /languages | |
parent | f9a9d3f59ec01bfc6ac037e801c0decece9596cc (diff) | |
download | tdevelop-d06bb8b517afe956b59aed99122f80d3809498a0.tar.gz tdevelop-d06bb8b517afe956b59aed99122f80d3809498a0.zip |
Bring stop, lock, exit, and run icons into XDG compliance
Diffstat (limited to 'languages')
-rw-r--r-- | languages/ada/problemreporter.cpp | 2 | ||||
-rw-r--r-- | languages/cpp/debugger/debuggerpart.cpp | 4 | ||||
-rw-r--r-- | languages/cpp/problemreporter.cpp | 4 | ||||
-rw-r--r-- | languages/java/problemreporter.cpp | 2 | ||||
-rw-r--r-- | languages/pascal/problemreporter.cpp | 2 | ||||
-rw-r--r-- | languages/php/phperrorview.cpp | 2 | ||||
-rw-r--r-- | languages/ruby/debugger/debuggerpart.cpp | 4 |
7 files changed, 10 insertions, 10 deletions
diff --git a/languages/ada/problemreporter.cpp b/languages/ada/problemreporter.cpp index 6bac0253..1e97ad7c 100644 --- a/languages/ada/problemreporter.cpp +++ b/languages/ada/problemreporter.cpp @@ -266,7 +266,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") ); } void ProblemReporter::slotPartRemoved( KParts::Part* part ) 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<KTextEditor::MarkInterfaceExtension*>( 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 diff --git a/languages/java/problemreporter.cpp b/languages/java/problemreporter.cpp index 4d4f47af..e1fc4174 100644 --- a/languages/java/problemreporter.cpp +++ b/languages/java/problemreporter.cpp @@ -250,7 +250,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") ); } void ProblemReporter::slotPartRemoved( KParts::Part* part ) diff --git a/languages/pascal/problemreporter.cpp b/languages/pascal/problemreporter.cpp index 2b477063..d0aaf01a 100644 --- a/languages/pascal/problemreporter.cpp +++ b/languages/pascal/problemreporter.cpp @@ -273,7 +273,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") ); } void ProblemReporter::slotPartRemoved( KParts::Part* part ) diff --git a/languages/php/phperrorview.cpp b/languages/php/phperrorview.cpp index 9af14b0d..2ee5bbf3 100644 --- a/languages/php/phperrorview.cpp +++ b/languages/php/phperrorview.cpp @@ -356,7 +356,7 @@ void PHPErrorView::slotPartAdded( KParts::Part* part ) if ( !iface ) return; - iface->setPixmap( KTextEditor::MarkInterface::markType07, SmallIcon("stop") ); + iface->setPixmap( KTextEditor::MarkInterface::markType07, SmallIcon("process-stop") ); } void PHPErrorView::slotPartRemoved( KParts::Part* part ) diff --git a/languages/ruby/debugger/debuggerpart.cpp b/languages/ruby/debugger/debuggerpart.cpp index 35e6a2d2..b3f91d75 100644 --- a/languages/ruby/debugger/debuggerpart.cpp +++ b/languages/ruby/debugger/debuggerpart.cpp @@ -115,7 +115,7 @@ RubyDebuggerPart::RubyDebuggerPart( TQObject *parent, const char *name, const TQ "breakpoint item allows you to change " "the breakpoint and will take you " "to the source in the editor window.")); - rdbBreakpointWidget->setIcon( SmallIcon("stop") ); + rdbBreakpointWidget->setIcon( SmallIcon("process-stop") ); mainWindow()->embedOutputView(rdbBreakpointWidget, i18n("Breakpoints"), i18n("Debugger breakpoints")); framestackWidget = new FramestackWidget( 0, "rdbFramestackWidget" ); @@ -170,7 +170,7 @@ RubyDebuggerPart::RubyDebuggerPart( TQObject *parent, const char *name, const TQ "while it is running, in order to get information " "about variables, frame stack, and so on.") ); - 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") ); |