summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-13 12:48:14 -0500
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-13 12:48:14 -0500
commitdde15864cec3c2e8d8c7b445f5005ac12089c6df (patch)
treeae006285417740a2bad5a65fdbefb3c55de13689
parent7cfd29abc5d369b4f0db5b1d2d67b055937b3ced (diff)
downloadkshutdown-dde15864cec3c2e8d8c7b445f5005ac12089c6df.tar.gz
kshutdown-dde15864cec3c2e8d8c7b445f5005ac12089c6df.zip
Bring undo, redo, find, and revert icons into XDG compliance
-rw-r--r--kshutdown/actions.cpp2
-rw-r--r--kshutdown/links.cpp2
-rw-r--r--kshutdownlockout/lockout.cpp2
3 files changed, 3 insertions, 3 deletions
diff --git a/kshutdown/actions.cpp b/kshutdown/actions.cpp
index da414de..4b331e0 100644
--- a/kshutdown/actions.cpp
+++ b/kshutdown/actions.cpp
@@ -230,7 +230,7 @@ TQString Action::getIconName(const Type action) const
case ShutDown: return "system-log-out";
case Reboot: return "reload";
case LockScreen: return "system-lock-screen";
- case Logout: return "undo";
+ case Logout: return "edit-undo";
case Extras: return "bookmark";
case Nothing:
default:
diff --git a/kshutdown/links.cpp b/kshutdown/links.cpp
index b88d0d5..adb61e3 100644
--- a/kshutdown/links.cpp
+++ b/kshutdown/links.cpp
@@ -171,7 +171,7 @@ TQString Links::getCurrentTypeIcon() const
case 2: return "system-log-out";
case 3: return "reload";
case 4: return "system-lock-screen";
- case 5: return "undo";
+ case 5: return "edit-undo";
default: return TQString::null;
}
}
diff --git a/kshutdownlockout/lockout.cpp b/kshutdownlockout/lockout.cpp
index b4e1e84..d1cd5d2 100644
--- a/kshutdownlockout/lockout.cpp
+++ b/kshutdownlockout/lockout.cpp
@@ -168,7 +168,7 @@ void Lockout::initActions() {
);
_logoutAction = new TDEAction(
- i18n("End Current Session"), "undo", TDEShortcut(),
+ i18n("End Current Session"), "edit-undo", TDEShortcut(),
this, SLOT(slotLogout()),
ac_shutDown, "kshutdown_logout"
);