summaryrefslogtreecommitdiffstats
path: root/knotes
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-13 12:51:12 -0500
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-13 12:51:12 -0500
commitd59f74e30fb3df4bfd516cf813a05702acc0c801 (patch)
tree4057a47256692a94f7a6c071216339a5cabd6b4a /knotes
parent267521c81f896cfbfcf4fbff69411d189114e855 (diff)
downloadtdepim-d59f74e30fb3df4bfd516cf813a05702acc0c801.tar.gz
tdepim-d59f74e30fb3df4bfd516cf813a05702acc0c801.zip
Bring undo, redo, find, and revert icons into XDG compliance
Diffstat (limited to 'knotes')
-rw-r--r--knotes/knoteedit.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/knotes/knoteedit.cpp b/knotes/knoteedit.cpp
index 2ba215b7..fff0bebf 100644
--- a/knotes/knoteedit.cpp
+++ b/knotes/knoteedit.cpp
@@ -532,8 +532,8 @@ TQPopupMenu *KNoteEdit::createPopupMenu( const TQPoint &pos )
menu->changeItem( menu->idAt(0), SmallIconSet("editcopy"), menu->text( menu->idAt(0) ) );
else {
int id = menu->idAt(0);
- menu->changeItem( id - IdUndo, SmallIconSet("undo"), menu->text( id - IdUndo) );
- menu->changeItem( id - IdRedo, SmallIconSet("redo"), menu->text( id - IdRedo) );
+ menu->changeItem( id - IdUndo, SmallIconSet("edit-undo"), menu->text( id - IdUndo) );
+ menu->changeItem( id - IdRedo, SmallIconSet("edit-redo"), menu->text( id - IdRedo) );
menu->changeItem( id - IdCut, SmallIconSet("editcut"), menu->text( id - IdCut) );
menu->changeItem( id - IdCopy, SmallIconSet("editcopy"), menu->text( id - IdCopy) );
menu->changeItem( id - IdPaste, SmallIconSet("editpaste"), menu->text( id - IdPaste) );