summaryrefslogtreecommitdiffstats
path: root/digikam/utilities/imageeditor
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-13 12:46:57 -0500
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-13 12:46:57 -0500
commit85c5c9e3a5630de45810c20306272019a21733c1 (patch)
tree73b63e0530e201775d9069852d1f0e5a959c4749 /digikam/utilities/imageeditor
parent199960aebcf1896a486e5caf87f5a5021eabe864 (diff)
downloaddigikam-85c5c9e3a5630de45810c20306272019a21733c1.tar.gz
digikam-85c5c9e3a5630de45810c20306272019a21733c1.zip
Bring undo, redo, find, and revert icons into XDG compliance
Diffstat (limited to 'digikam/utilities/imageeditor')
-rw-r--r--digikam/utilities/imageeditor/editor/editorwindow.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/digikam/utilities/imageeditor/editor/editorwindow.cpp b/digikam/utilities/imageeditor/editor/editorwindow.cpp
index 8e4c5f4..8c2a122 100644
--- a/digikam/utilities/imageeditor/editor/editorwindow.cpp
+++ b/digikam/utilities/imageeditor/editor/editorwindow.cpp
@@ -306,7 +306,7 @@ void EditorWindow::setupStandardActions()
d->copyAction->setEnabled(false);
- m_undoAction = new TDEToolBarPopupAction(i18n("Undo"), "undo",
+ m_undoAction = new TDEToolBarPopupAction(i18n("Undo"), "edit-undo",
TDEStdAccel::shortcut(TDEStdAccel::Undo),
TQT_TQOBJECT(m_canvas), TQT_SLOT(slotUndo()),
actionCollection(), "editorwindow_undo");
@@ -319,7 +319,7 @@ void EditorWindow::setupStandardActions()
m_undoAction->setEnabled(false);
- m_redoAction = new TDEToolBarPopupAction(i18n("Redo"), "redo",
+ m_redoAction = new TDEToolBarPopupAction(i18n("Redo"), "edit-redo",
TDEStdAccel::shortcut(TDEStdAccel::Redo),
TQT_TQOBJECT(m_canvas), TQT_SLOT(slotRedo()),
actionCollection(), "editorwindow_redo");