diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-13 12:49:21 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-13 12:49:21 -0500 |
commit | ed49d042342ecc70dd88b04a8c3d06244bbd7114 (patch) | |
tree | b71abbe04b9f35983aea68b6e39207a8d6bcba42 /PerlTQt/examples/richedit/richedit.pl | |
parent | 8192e78fb4207c9cc6980710ef91ceea43e1f694 (diff) | |
download | libtqt-perl-ed49d042342ecc70dd88b04a8c3d06244bbd7114.tar.gz libtqt-perl-ed49d042342ecc70dd88b04a8c3d06244bbd7114.zip |
Bring undo, redo, find, and revert icons into XDG compliance
Diffstat (limited to 'PerlTQt/examples/richedit/richedit.pl')
-rw-r--r-- | PerlTQt/examples/richedit/richedit.pl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/PerlTQt/examples/richedit/richedit.pl b/PerlTQt/examples/richedit/richedit.pl index d2dee84..3d459f7 100644 --- a/PerlTQt/examples/richedit/richedit.pl +++ b/PerlTQt/examples/richedit/richedit.pl @@ -120,12 +120,12 @@ sub NEW fileExitAction->setMenuText(this->trUtf8("E&xit")); fileExitAction->setAccel(TQt::KeySequence(int(0))); editUndoAction= TQt::Action(this,"editUndoAction"); - editUndoAction->setIconSet(TQt::IconSet(uic_load_pixmap_EditorForm("undo"))); + editUndoAction->setIconSet(TQt::IconSet(uic_load_pixmap_EditorForm("edit-undo"))); editUndoAction->setText(this->trUtf8("Undo")); editUndoAction->setMenuText(this->trUtf8("&Undo")); editUndoAction->setAccel(TQt::KeySequence(int(4194394))); editRedoAction= TQt::Action(this,"editRedoAction"); - editRedoAction->setIconSet(TQt::IconSet(uic_load_pixmap_EditorForm("redo"))); + editRedoAction->setIconSet(TQt::IconSet(uic_load_pixmap_EditorForm("edit-redo"))); editRedoAction->setText(this->trUtf8("Redo")); editRedoAction->setMenuText(this->trUtf8("&Redo")); editRedoAction->setAccel(TQt::KeySequence(int(4194393))); |