Branch: master

3db25e4b 2014-10-13 00:13:06 Timothy Pearson
Bring up, down, top, and bottom icons into XDG compliance
M ksystemlog/src/fileList.cpp
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 @@
 	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 @@
 	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);