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

pull/1/head
Timothy Pearson 10 years ago
parent 40697b904e
commit 4b4400a36e

@ -558,7 +558,7 @@ void Kile::setupActions()
(void) new TDEAction(i18n("Next LaTeX Warning"),"warnnext", 0, m_errorHandler, TQT_SLOT(NextWarning()), actionCollection(),"NextWarning" ); (void) new TDEAction(i18n("Next LaTeX Warning"),"warnnext", 0, m_errorHandler, TQT_SLOT(NextWarning()), actionCollection(),"NextWarning" );
(void) new TDEAction(i18n("Previous LaTeX BadBox"),"bboxprev", 0, m_errorHandler, TQT_SLOT(PreviousBadBox()), actionCollection(),"PreviousBadBox" ); (void) new TDEAction(i18n("Previous LaTeX BadBox"),"bboxprev", 0, m_errorHandler, TQT_SLOT(PreviousBadBox()), actionCollection(),"PreviousBadBox" );
(void) new TDEAction(i18n("Next LaTeX BadBox"),"bboxnext", 0, m_errorHandler, TQT_SLOT(NextBadBox()), actionCollection(),"NextBadBox" ); (void) new TDEAction(i18n("Next LaTeX BadBox"),"bboxnext", 0, m_errorHandler, TQT_SLOT(NextBadBox()), actionCollection(),"NextBadBox" );
m_paStop = new TDEAction(i18n("&Stop"),"stop",Key_Escape,0,0,actionCollection(),"Stop"); m_paStop = new TDEAction(i18n("&Stop"),"process-stop",Key_Escape,0,0,actionCollection(),"Stop");
m_paStop->setEnabled(false); m_paStop->setEnabled(false);
(void) new TDEAction(i18n("Editor View"),"edit",CTRL+Key_E , TQT_TQOBJECT(this), TQT_SLOT(showEditorWidget()), actionCollection(),"EditorView" ); (void) new TDEAction(i18n("Editor View"),"edit",CTRL+Key_E , TQT_TQOBJECT(this), TQT_SLOT(showEditorWidget()), actionCollection(),"EditorView" );

@ -336,7 +336,7 @@ namespace KileWidget
else if ( folder == "refs" ) else if ( folder == "refs" )
{ {
fldr->setText(0, i18n("Undefined References")); fldr->setText(0, i18n("Undefined References"));
fldr->setPixmap(0, SmallIcon("stop")); fldr->setPixmap(0, SmallIcon("process-stop"));
} }
else if ( folder == "todo" ) else if ( folder == "todo" )
{ {

@ -312,7 +312,7 @@ void Manager::reflectDocumentStatus(Kate::Document *doc, bool isModified, unsign
else if ( reason == 1 || reason == 2 ) //dirty file else if ( reason == 1 || reason == 2 ) //dirty file
icon = SmallIcon("revert"); icon = SmallIcon("revert");
else if ( reason == 3 ) //file deleted else if ( reason == 3 ) //file deleted
icon = SmallIcon("stop"); icon = SmallIcon("process-stop");
else if ( m_ki->extensions()->isScriptFile(doc->url()) ) else if ( m_ki->extensions()->isScriptFile(doc->url()) )
icon = SmallIcon("js"); icon = SmallIcon("js");
else else

Loading…
Cancel
Save