summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--amor/amor.cpp2
-rw-r--r--kodo/kodometer.cpp2
-rw-r--r--kteatime/toplevel.cpp2
3 files changed, 3 insertions, 3 deletions
diff --git a/amor/amor.cpp b/amor/amor.cpp
index d98cbd1..2580794 100644
--- a/amor/amor.cpp
+++ b/amor/amor.cpp
@@ -613,7 +613,7 @@ void Amor::slotMouseClicked(const TQPoint &pos)
mMenu->insertItem(SmallIcon("configure"), i18n("&Configure..."), this, TQT_SLOT(slotConfigure()));
mMenu->insertSeparator();
mMenu->insertItem(SmallIcon("help"), i18n("&Help"), helpMnu);
- mMenu->insertItem(SmallIcon("exit"), i18n("&Quit"), kapp, TQT_SLOT(quit()));
+ mMenu->insertItem(SmallIcon("system-log-out"), i18n("&Quit"), kapp, TQT_SLOT(quit()));
}
mMenu->exec(pos);
diff --git a/kodo/kodometer.cpp b/kodo/kodometer.cpp
index 43a5794..8468190 100644
--- a/kodo/kodometer.cpp
+++ b/kodo/kodometer.cpp
@@ -99,7 +99,7 @@ Kodometer::Kodometer(TQWidget* parent, const char* name)
menu->insertItem(SmallIconSet("help"), i18n("&Help"), helpMnu);
- menu->insertItem(SmallIconSet("exit"), i18n("&Quit"), this, TQT_SLOT(quit()));
+ menu->insertItem(SmallIconSet("system-log-out"), i18n("&Quit"), this, TQT_SLOT(quit()));
menu->setCheckable(true);
menu->setItemChecked(enabledID, Enabled);
diff --git a/kteatime/toplevel.cpp b/kteatime/toplevel.cpp
index 1980eb3..468f615 100644
--- a/kteatime/toplevel.cpp
+++ b/kteatime/toplevel.cpp
@@ -152,7 +152,7 @@ TopLevel::TopLevel() : KSystemTray()
menu->insertSeparator();
confAct->plug(menu);
menu->insertItem(SmallIcon("help"), i18n("&Help"), helpMnu);
- menu->insertItem(SmallIcon("exit"), i18n("Quit"), kapp, TQT_SLOT(quit()));
+ menu->insertItem(SmallIcon("system-log-out"), i18n("Quit"), kapp, TQT_SLOT(quit()));
// quitAct->plug(menu); // FIXME: this doesn't seem to work with above definition of quitAct?
// (need special 'quit'-method?)