diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-12 17:50:49 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-12 17:50:49 -0500 |
commit | 1346f6898707e6a4d95abee07c3d1608fc056998 (patch) | |
tree | d5fc28cf446d57d2109c4733938b947335f08da3 /kdesktop/lock | |
parent | ad7c5952211441479dd049c73de84d55cafccf04 (diff) | |
download | tdebase-1346f6898707e6a4d95abee07c3d1608fc056998.tar.gz tdebase-1346f6898707e6a4d95abee07c3d1608fc056998.zip |
Bring stop, lock, exit, and run icons into XDG compliance
Diffstat (limited to 'kdesktop/lock')
-rw-r--r-- | kdesktop/lock/autologout.cc | 2 | ||||
-rw-r--r-- | kdesktop/lock/lockdlg.cc | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/kdesktop/lock/autologout.cc b/kdesktop/lock/autologout.cc index 0861eaef0..7d6bf6ff1 100644 --- a/kdesktop/lock/autologout.cc +++ b/kdesktop/lock/autologout.cc @@ -49,7 +49,7 @@ AutoLogout::AutoLogout(LockProcess *parent) : TQDialog(parent, "password dialog" frame->setLineWidth(2); TQLabel *pixLabel = new TQLabel( frame, "pixlabel" ); - pixLabel->setPixmap(DesktopIcon("exit")); + pixLabel->setPixmap(DesktopIcon("system-log-out")); TQLabel *greetLabel = new TQLabel(i18n("<nobr><qt><b>Automatic Log Out</b></qt><nobr>"), frame); TQLabel *infoLabel = new TQLabel(i18n("<qt>To prevent being logged out, resume using this session by moving the mouse or pressing a key.</qt>"), frame); diff --git a/kdesktop/lock/lockdlg.cc b/kdesktop/lock/lockdlg.cc index bfa727678..7b53484d2 100644 --- a/kdesktop/lock/lockdlg.cc +++ b/kdesktop/lock/lockdlg.cc @@ -119,7 +119,7 @@ void PasswordDlg::init(GreeterPluginHandle *plugin) TQLabel *pixLabel = NULL; if (!trinity_desktop_lock_use_system_modal_dialogs) { pixLabel = new TQLabel( frame, "pixlabel" ); - pixLabel->setPixmap(DesktopIcon("lock")); + pixLabel->setPixmap(DesktopIcon("system-lock-screen")); } KUser user; |