summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-12 17:52:16 -0500
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-12 17:52:16 -0500
commitd06bb8b517afe956b59aed99122f80d3809498a0 (patch)
tree9a14247bc1749189777db14187c06d827f2edcfa /src
parentf9a9d3f59ec01bfc6ac037e801c0decece9596cc (diff)
downloadtdevelop-d06bb8b517afe956b59aed99122f80d3809498a0.tar.gz
tdevelop-d06bb8b517afe956b59aed99122f80d3809498a0.zip
Bring stop, lock, exit, and run icons into XDG compliance
Diffstat (limited to 'src')
-rw-r--r--src/mainwindowshare.cpp2
-rw-r--r--src/simplemainwindow.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/mainwindowshare.cpp b/src/mainwindowshare.cpp
index a06dba14..619b3ab3 100644
--- a/src/mainwindowshare.cpp
+++ b/src/mainwindowshare.cpp
@@ -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"));
diff --git a/src/simplemainwindow.cpp b/src/simplemainwindow.cpp
index 6ca92ef8..b252bf0b 100644
--- a/src/simplemainwindow.cpp
+++ b/src/simplemainwindow.cpp
@@ -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;
}
}