summaryrefslogtreecommitdiffstats
path: root/kicker/kicker/ui/k_mnu.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-12 17:50:49 -0500
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-12 17:50:49 -0500
commit1346f6898707e6a4d95abee07c3d1608fc056998 (patch)
treed5fc28cf446d57d2109c4733938b947335f08da3 /kicker/kicker/ui/k_mnu.cpp
parentad7c5952211441479dd049c73de84d55cafccf04 (diff)
downloadtdebase-1346f6898707e6a4d95abee07c3d1608fc056998.tar.gz
tdebase-1346f6898707e6a4d95abee07c3d1608fc056998.zip
Bring stop, lock, exit, and run icons into XDG compliance
Diffstat (limited to 'kicker/kicker/ui/k_mnu.cpp')
-rw-r--r--kicker/kicker/ui/k_mnu.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/kicker/kicker/ui/k_mnu.cpp b/kicker/kicker/ui/k_mnu.cpp
index 6f8ddc4aa..9d1d70f87 100644
--- a/kicker/kicker/ui/k_mnu.cpp
+++ b/kicker/kicker/ui/k_mnu.cpp
@@ -366,7 +366,7 @@ void PanelKMenu::initialize()
// run command
if (kapp->authorize("run_command"))
{
- insertItem(KickerLib::menuIconSet("run"),
+ insertItem(KickerLib::menuIconSet("system-run"),
i18n("Run Command..."),
this,
TQT_SLOT( slotRunCommand()));
@@ -393,12 +393,12 @@ void PanelKMenu::initialize()
if (kapp->authorize("lock_screen"))
{
- insertItem(KickerLib::menuIconSet("lock"), i18n("Lock Session"), this, TQT_SLOT(slotLock()));
+ insertItem(KickerLib::menuIconSet("system-lock-screen"), i18n("Lock Session"), this, TQT_SLOT(slotLock()));
}
if (kapp->authorize("logout"))
{
- insertItem(KickerLib::menuIconSet("exit"), i18n("Log Out..."), this, TQT_SLOT(slotLogout()));
+ insertItem(KickerLib::menuIconSet("system-log-out"), i18n("Log Out..."), this, TQT_SLOT(slotLogout()));
}
#if 0
@@ -474,7 +474,7 @@ void PanelKMenu::slotPopulateSessions()
if (kapp->authorize("start_new_session") && (p = dm.numReserve()) >= 0)
{
if (kapp->authorize("lock_screen")) {
- sessionsMenu->insertItem(SmallIconSet("lock"), i18n("Lock Current && Start New Session"), 100 );
+ sessionsMenu->insertItem(SmallIconSet("system-lock-screen"), i18n("Lock Current && Start New Session"), 100 );
}
sessionsMenu->insertItem(SmallIconSet("switchuser"), i18n("Start New Session"), 101 );
if (!p) {