summaryrefslogtreecommitdiffstats
path: root/tdeui/kcommand.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-13 12:50:47 -0500
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-13 12:50:47 -0500
commit235c081002d54596ea7869946ba82829669c9a30 (patch)
tree844f0364874aa2414ced9b4e1537e247e641b624 /tdeui/kcommand.cpp
parente4da373e49c1f6fd31115f8e23465227ca4308b6 (diff)
downloadtdelibs-235c081002d54596ea7869946ba82829669c9a30.tar.gz
tdelibs-235c081002d54596ea7869946ba82829669c9a30.zip
Bring undo, redo, find, and revert icons into XDG compliance
Diffstat (limited to 'tdeui/kcommand.cpp')
-rw-r--r--tdeui/kcommand.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tdeui/kcommand.cpp b/tdeui/kcommand.cpp
index 994d1262e..5357e557a 100644
--- a/tdeui/kcommand.cpp
+++ b/tdeui/kcommand.cpp
@@ -83,7 +83,7 @@ KCommandHistory::KCommandHistory(TDEActionCollection * actionCollection, bool wi
d=new KCommandHistoryPrivate();
if (withMenus)
{
- TDEToolBarPopupAction * undo = new TDEToolBarPopupAction( i18n("&Undo"), "undo",
+ TDEToolBarPopupAction * undo = new TDEToolBarPopupAction( i18n("&Undo"), "edit-undo",
TDEStdAccel::shortcut(TDEStdAccel::Undo), this, TQT_SLOT( undo() ),
actionCollection, KStdAction::stdName( KStdAction::Undo ) );
connect( undo->popupMenu(), TQT_SIGNAL( aboutToShow() ), this, TQT_SLOT( slotUndoAboutToShow() ) );
@@ -91,7 +91,7 @@ KCommandHistory::KCommandHistory(TDEActionCollection * actionCollection, bool wi
m_undo = undo;
m_undoPopup = undo->popupMenu();
- TDEToolBarPopupAction * redo = new TDEToolBarPopupAction( i18n("&Redo"), "redo",
+ TDEToolBarPopupAction * redo = new TDEToolBarPopupAction( i18n("&Redo"), "edit-redo",
TDEStdAccel::shortcut(TDEStdAccel::Redo), this, TQT_SLOT( redo() ),
actionCollection, KStdAction::stdName( KStdAction::Redo ) );
connect( redo->popupMenu(), TQT_SIGNAL( aboutToShow() ), this, TQT_SLOT( slotRedoAboutToShow() ) );