diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-13 12:51:12 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-13 12:51:12 -0500 |
commit | d59f74e30fb3df4bfd516cf813a05702acc0c801 (patch) | |
tree | 4057a47256692a94f7a6c071216339a5cabd6b4a /knotes | |
parent | 267521c81f896cfbfcf4fbff69411d189114e855 (diff) | |
download | tdepim-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.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/knotes/knoteedit.cpp b/knotes/knoteedit.cpp index 2ba215b7b..fff0bebf1 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) ); |