diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-12 17:49:01 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-12 17:49:01 -0500 |
commit | 62b1572453a5c3bd02a9bb9564a9cdb4326b4bce (patch) | |
tree | 4fffc52a2c7b7efd1c8b71a035f09033d400169a /kshutdownlockout | |
parent | df3daedcec584550fefe0e823fdb39863545ca9e (diff) | |
download | kshutdown-62b1572453a5c3bd02a9bb9564a9cdb4326b4bce.tar.gz kshutdown-62b1572453a5c3bd02a9bb9564a9cdb4326b4bce.zip |
Bring stop, lock, exit, and run icons into XDG compliance
Diffstat (limited to 'kshutdownlockout')
-rw-r--r-- | kshutdownlockout/lockout.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/kshutdownlockout/lockout.cpp b/kshutdownlockout/lockout.cpp index 201ecd7..b4e1e84 100644 --- a/kshutdownlockout/lockout.cpp +++ b/kshutdownlockout/lockout.cpp @@ -95,7 +95,7 @@ Lockout::Lockout(const TQString& configFile, TQWidget *parent) TQToolButton *button = new TQToolButton(this); button->setAutoRaise(true); button->setBackgroundMode(X11ParentRelative); - button->setPixmap(SmallIcon("exit")); + button->setPixmap(SmallIcon("system-log-out")); button->setPopupDelay(100); button->setMinimumSize(button->pixmap()->size()); button->setSizePolicy(TQSizePolicy(TQSizePolicy::MinimumExpanding, TQSizePolicy::MinimumExpanding)); @@ -162,7 +162,7 @@ void Lockout::initActions() { TDEActionCollection *ac_shutDown = new TDEActionCollection(this, this); _lockScreenAction = new TDEAction( - i18n("Lock Screen"), "lock", TDEShortcut(), + i18n("Lock Screen"), "system-lock-screen", TDEShortcut(), this, SLOT(slotLockScreen()), ac_shutDown, "kshutdown_lockscreen" ); @@ -180,7 +180,7 @@ void Lockout::initActions() { ); _shutDownAction = new TDEAction( - i18n("Turn Off Computer"), "exit", TDEShortcut(), + i18n("Turn Off Computer"), "system-log-out", TDEShortcut(), this, SLOT(slotShutDown()), ac_shutDown, "kshutdown_shutdown" ); @@ -212,7 +212,7 @@ void Lockout::slotConfigureKShutDown() { void Lockout::slotIconChanged() { // FIXME: 2.0: update action icons - setIcon(SmallIcon("exit")); + setIcon(SmallIcon("system-log-out")); } void Lockout::slotLockScreen() { |