summaryrefslogtreecommitdiffstats
path: root/kolourpaint
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-13 12:50:32 -0500
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-13 12:50:32 -0500
commitffd6b5f8426c6f4d5ded673221f6799598d36a34 (patch)
treefa13ee6f9f06091f723e056b27b10b8bd2f21e18 /kolourpaint
parentbf0e4d08fa97ebd72cdc47e28afbc4f77cd60dad (diff)
downloadtdegraphics-ffd6b5f8426c6f4d5ded673221f6799598d36a34.tar.gz
tdegraphics-ffd6b5f8426c6f4d5ded673221f6799598d36a34.zip
Bring undo, redo, find, and revert icons into XDG compliance
Diffstat (limited to 'kolourpaint')
-rw-r--r--kolourpaint/kpcommandhistory.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/kolourpaint/kpcommandhistory.cpp b/kolourpaint/kpcommandhistory.cpp
index 118f2280..a30f028b 100644
--- a/kolourpaint/kpcommandhistory.cpp
+++ b/kolourpaint/kpcommandhistory.cpp
@@ -257,13 +257,13 @@ kpCommandHistoryBase::kpCommandHistoryBase (bool doReadConfig,
: d (new kpCommandHistoryBasePrivate ())
{
m_actionUndo = new TDEToolBarPopupAction (undoActionText (),
- TQString::fromLatin1 ("undo"),
+ TQString::fromLatin1 ("edit-undo"),
TDEStdAccel::shortcut (TDEStdAccel::Undo),
this, TQT_SLOT (undo ()),
ac, KStdAction::name (KStdAction::Undo));
m_actionRedo = new TDEToolBarPopupAction (redoActionText (),
- TQString::fromLatin1 ("redo"),
+ TQString::fromLatin1 ("edit-redo"),
TDEStdAccel::shortcut (TDEStdAccel::Redo),
this, TQT_SLOT (redo ()),
ac, KStdAction::name (KStdAction::Redo));