summaryrefslogtreecommitdiffstats
path: root/kicker
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-13 00:14:55 -0500
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-13 00:14:55 -0500
commit064f8056e28239c0e08a6a5443447fbb2a7ecc9d (patch)
tree75b6bec2155d32a0b5e1243b6cb41c0281a18bf5 /kicker
parent794af5ed134375d4f12843510a491ba20b94a7f2 (diff)
downloadtdebase-064f8056e28239c0e08a6a5443447fbb2a7ecc9d.tar.gz
tdebase-064f8056e28239c0e08a6a5443447fbb2a7ecc9d.zip
Bring up, down, top, and bottom icons into XDG compliance
Diffstat (limited to 'kicker')
-rw-r--r--kicker/taskmanager/taskrmbmenu.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/kicker/taskmanager/taskrmbmenu.cpp b/kicker/taskmanager/taskrmbmenu.cpp
index f92719f47..08fe0785d 100644
--- a/kicker/taskmanager/taskrmbmenu.cpp
+++ b/kicker/taskmanager/taskrmbmenu.cpp
@@ -210,12 +210,12 @@ TQPopupMenu* TaskRMBMenu::makeAdvancedMenu(Task::Ptr t)
menu->setCheckable(true);
- id = menu->insertItem(SmallIconSet("up"),
+ id = menu->insertItem(SmallIconSet("go-up"),
i18n("Keep &Above Others"),
t, TQT_SLOT(toggleAlwaysOnTop()));
menu->setItemChecked(id, t->isAlwaysOnTop());
- id = menu->insertItem(SmallIconSet("down"),
+ id = menu->insertItem(SmallIconSet("go-down"),
i18n("Keep &Below Others"),
t, TQT_SLOT(toggleKeptBelowOthers()));
menu->setItemChecked(id, t->isKeptBelowOthers());