summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-13 00:13:06 -0500
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-13 00:13:06 -0500
commit3db25e4be732a597a665ec0e41e94fed851b7124 (patch)
tree4c04a9ff1f7ac0157e9433e6bfa71f0436d3884f
parent2d741d516976a37683c8d5e736b333686cfd870a (diff)
downloadksystemlog-3db25e4b.tar.gz
ksystemlog-3db25e4b.zip
Bring up, down, top, and bottom icons into XDG compliance
-rw-r--r--ksystemlog/src/fileList.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/ksystemlog/src/fileList.cpp b/ksystemlog/src/fileList.cpp
index ae30f9b..bdd93e7 100644
--- a/ksystemlog/src/fileList.cpp
+++ b/ksystemlog/src/fileList.cpp
@@ -76,12 +76,12 @@ FileList::FileList(TQWidget *parent, TQString description) :
TQToolTip::add(remove, i18n("Delete the current file(s)"));
TQWhatsThis::add(remove, i18n("Deletes the selected files of the list."));
- up=new TQPushButton(SmallIconSet("up"), i18n("Move &Up"), buttons);
+ up=new TQPushButton(SmallIconSet("go-up"), i18n("Move &Up"), buttons);
connect(up, TQT_SIGNAL(clicked()), this, TQT_SLOT(moveUpItem()));
TQToolTip::add(up, i18n("Move up the current file(s)"));
TQWhatsThis::add(up, i18n("<qt>Moves up the selected files in the list. This option allows the files to be read <b>in first</b> by KSystemLog.</qt>"));
- down=new TQPushButton(SmallIconSet("down"), i18n("Move &Down"), buttons);
+ down=new TQPushButton(SmallIconSet("go-down"), i18n("Move &Down"), buttons);
connect(down, TQT_SIGNAL(clicked()), this, TQT_SLOT(moveDownItem()));
TQToolTip::add(down, i18n("Move down the current file(s)"));
TQWhatsThis::add(down, i18n("<qt>Moves down the selected files in the list. This option allows the files to be read <b>at last</b> by KSystemLog.</qt>"));
@@ -96,8 +96,8 @@ FileList::FileList(TQWidget *parent, TQString description) :
fileListMenu->insertItem(SmallIcon("fileopen"), i18n("&Add File..."), this, TQT_SLOT(addItem()), 0, ADD_FILE_MENU_ID);
fileListMenu->insertItem(SmallIcon("edit_remove"), i18n("&Remove"), this, TQT_SLOT(removeSelectedItem()), 0, REMOVE_MENU_ID);
fileListMenu->insertSeparator();
- fileListMenu->insertItem(SmallIcon("up"), i18n("Move &Up"), this, TQT_SLOT(moveUpItem()), 0, MOVE_UP_MENU_ID);
- fileListMenu->insertItem(SmallIcon("down"), i18n("Move &Down"), this, TQT_SLOT(moveDownItem()), 0, MOVE_DOWN_MENU_ID);
+ fileListMenu->insertItem(SmallIcon("go-up"), i18n("Move &Up"), this, TQT_SLOT(moveUpItem()), 0, MOVE_UP_MENU_ID);
+ fileListMenu->insertItem(SmallIcon("go-down"), i18n("Move &Down"), this, TQT_SLOT(moveDownItem()), 0, MOVE_DOWN_MENU_ID);
fileListMenu->insertSeparator();
fileListMenu->insertItem(SmallIcon("cancel"), i18n("Re&move All"), this, TQT_SLOT(removeAllItem()), 0, REMOVE_ALL_MENU_ID);