From 3db25e4be732a597a665ec0e41e94fed851b7124 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Mon, 13 Oct 2014 00:13:06 -0500 Subject: [PATCH] Bring up, down, top, and bottom icons into XDG compliance --- ksystemlog/src/fileList.cpp | 8 ++++---- 1 file 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("Moves up the selected files in the list. This option allows the files to be read in first by KSystemLog.")); - 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("Moves down the selected files in the list. This option allows the files to be read at last by KSystemLog.")); @@ -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);