diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-13 12:50:47 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-13 12:50:47 -0500 |
commit | 235c081002d54596ea7869946ba82829669c9a30 (patch) | |
tree | 844f0364874aa2414ced9b4e1537e247e641b624 /tdeui/keditcl2.cpp | |
parent | e4da373e49c1f6fd31115f8e23465227ca4308b6 (diff) | |
download | tdelibs-235c081002d54596ea7869946ba82829669c9a30.tar.gz tdelibs-235c081002d54596ea7869946ba82829669c9a30.zip |
Bring undo, redo, find, and revert icons into XDG compliance
Diffstat (limited to 'tdeui/keditcl2.cpp')
-rw-r--r-- | tdeui/keditcl2.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tdeui/keditcl2.cpp b/tdeui/keditcl2.cpp index 4749a471f..4a3a22eeb 100644 --- a/tdeui/keditcl2.cpp +++ b/tdeui/keditcl2.cpp @@ -698,7 +698,7 @@ public: KEdFind::KEdFind( TQWidget *parent, const char *name, bool modal ) :KDialogBase( parent, name, modal, i18n("Find"), - modal ? User1|Cancel : User1|Close, User1, false, KGuiItem( i18n("&Find"), "find") ) + modal ? User1|Cancel : User1|Close, User1, false, KGuiItem( i18n("&Find"), "edit-find") ) { setWFlags( WType_TopLevel ); @@ -830,7 +830,7 @@ KEdReplace::KEdReplace( TQWidget *parent, const char *name, bool modal ) :KDialogBase( parent, name, modal, i18n("Replace"), modal ? User3|User2|User1|Cancel : User3|User2|User1|Close, User3, false, - i18n("Replace &All"), i18n("&Replace"), KGuiItem( i18n("&Find"), "find") ) + i18n("Replace &All"), i18n("&Replace"), KGuiItem( i18n("&Find"), "edit-find") ) { setWFlags( WType_TopLevel ); @@ -1115,8 +1115,8 @@ TQPopupMenu *KEdit::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) ); |