Bring stop, lock, exit, and run icons into XDG compliance

pull/1/head
Timothy Pearson 10 years ago
parent f9a9d3f59e
commit d06bb8b517

@ -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 )

@ -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") );

@ -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

@ -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 )

@ -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 )

@ -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 )

@ -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") );

@ -35,7 +35,7 @@ KDevHTMLPart::KDevHTMLPart()
reloadAction = new TDEAction( i18n( "Reload" ), "reload", 0,
this, TQT_SLOT( slotReload() ), actions, "doc_reload" );
reloadAction->setWhatsThis(i18n("<b>Reload</b><p>Reloads the current document."));
stopAction = new TDEAction( i18n( "Stop" ), "stop", 0,
stopAction = new TDEAction( i18n( "Stop" ), "process-stop", 0,
this, TQT_SLOT( slotStop() ), actions, "doc_stop" );
stopAction->setWhatsThis(i18n("<b>Stop</b><p>Stops the loading of current document."));
duplicateAction = new TDEAction( i18n( "Duplicate Tab" ), "window_new", 0,

@ -57,7 +57,7 @@ void FileListItem::setState( DocumentState state )
setPixmap( 0, SmallIcon("revert") );
break;
case DirtyAndModified:
setPixmap( 0, SmallIcon("stop") );
setPixmap( 0, SmallIcon("process-stop") );
break;
}
}

@ -109,7 +109,7 @@ void MainWindowShare::createActions()
TDEAction* action;
m_stopProcesses = new TDEToolBarPopupAction( i18n( "&Stop" ), "stop",
m_stopProcesses = new TDEToolBarPopupAction( i18n( "&Stop" ), "process-stop",
Key_Escape, this, TQT_SLOT(slotStopButtonPressed()),
m_pMainWnd->actionCollection(), "stop_processes" );
m_stopProcesses->setToolTip(i18n("Stop"));

@ -578,7 +578,7 @@ void SimpleMainWindow::documentChangedState(const KURL &url, DocumentState state
widget->setIcon(SmallIcon("revert", isize));
break;
case DirtyAndModified:
widget->setIcon(SmallIcon("stop", isize));
widget->setIcon(SmallIcon("process-stop", isize));
break;
}
}

Loading…
Cancel
Save