diff options
author | Timothy Pearson <[email protected]> | 2014-10-13 15:43:57 -0500 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2014-10-13 15:43:57 -0500 |
commit | bab4f22f92cb4960c7a7c17845813de2082ffdc9 (patch) | |
tree | 640b74651a92cff1c0ad2d5f0d3fd497b0ebb318 /tdeui/klineedit.cpp | |
parent | 43022555c031434da009032eceb8e6061e969d5f (diff) | |
download | tdelibs-bab4f22f92cb4960c7a7c17845813de2082ffdc9.tar.gz tdelibs-bab4f22f92cb4960c7a7c17845813de2082ffdc9.zip |
Bring filenew, fileopen, fileprint, filequickprint, filesave, filesaveas, fileclose, editclear, editcopy, editcut, editdelete, editpaste, folder_new, and gohome icons into XDG compliance
Diffstat (limited to 'tdeui/klineedit.cpp')
-rw-r--r-- | tdeui/klineedit.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tdeui/klineedit.cpp b/tdeui/klineedit.cpp index f41ebd22c..92afc91fd 100644 --- a/tdeui/klineedit.cpp +++ b/tdeui/klineedit.cpp @@ -868,10 +868,10 @@ TQPopupMenu *KLineEdit::createPopupMenu() int id = popup->idAt(0); popup->changeItem( id - IdUndo, SmallIconSet("edit-undo"), popup->text( id - IdUndo) ); popup->changeItem( id - IdRedo, SmallIconSet("edit-redo"), popup->text( id - IdRedo) ); - popup->changeItem( id - IdCut, SmallIconSet("editcut"), popup->text( id - IdCut) ); - popup->changeItem( id - IdCopy, SmallIconSet("editcopy"), popup->text( id - IdCopy) ); - popup->changeItem( id - IdPaste, SmallIconSet("editpaste"), popup->text( id - IdPaste) ); - popup->changeItem( id - IdClear, SmallIconSet("editclear"), popup->text( id - IdClear) ); + popup->changeItem( id - IdCut, SmallIconSet("edit-cut"), popup->text( id - IdCut) ); + popup->changeItem( id - IdCopy, SmallIconSet("edit-copy"), popup->text( id - IdCopy) ); + popup->changeItem( id - IdPaste, SmallIconSet("edit-paste"), popup->text( id - IdPaste) ); + popup->changeItem( id - IdClear, SmallIconSet("edit-clear"), popup->text( id - IdClear) ); // If a completion object is present and the input // widget is not read-only, show the Text Completion |