diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-11 21:45:19 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-11 21:45:19 -0500 |
commit | ccf9305673afee3d8e24727cf193f1716022eed6 (patch) | |
tree | dd3f5d6cee1c1a0d5133ed199e29d8dbbc84dfa3 | |
parent | 19eeb7315f0e5fbeb76d673741dac7b69cb18bd8 (diff) | |
download | tdebase-ccf9305673afee3d8e24727cf193f1716022eed6.tar.gz tdebase-ccf9305673afee3d8e24727cf193f1716022eed6.zip |
Bring previous and next icons into XDG compliance
-rw-r--r-- | konsole/konsole/konsole.cpp | 4 | ||||
-rw-r--r-- | ksmserver/shutdowndlg.cpp | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/konsole/konsole/konsole.cpp b/konsole/konsole/konsole.cpp index 569110b08..3c94b1b5c 100644 --- a/konsole/konsole/konsole.cpp +++ b/konsole/konsole/konsole.cpp @@ -1115,11 +1115,11 @@ void Konsole::makeBasicGUI() TQT_SLOT(slotFindHistory()), m_shortcuts, "find_history"); m_findHistory->setEnabled(b_histEnabled); - m_findNext = new TDEAction(i18n("Find &Next"), "next", 0, TQT_TQOBJECT(this), + m_findNext = new TDEAction(i18n("Find &Next"), "go-next", 0, TQT_TQOBJECT(this), TQT_SLOT(slotFindNext()), m_shortcuts, "find_next"); m_findNext->setEnabled(b_histEnabled); - m_findPrevious = new TDEAction(i18n("Find Pre&vious"), "previous", 0, TQT_TQOBJECT(this), + m_findPrevious = new TDEAction(i18n("Find Pre&vious"), "go-previous", 0, TQT_TQOBJECT(this), TQT_SLOT(slotFindPrevious()), m_shortcuts, "find_previous"); m_findPrevious->setEnabled( b_histEnabled ); diff --git a/ksmserver/shutdowndlg.cpp b/ksmserver/shutdowndlg.cpp index f4b1ca86c..eda513355 100644 --- a/ksmserver/shutdowndlg.cpp +++ b/ksmserver/shutdowndlg.cpp @@ -1351,7 +1351,7 @@ KSMDelayedMessageBox::KSMDelayedMessageBox( TDEApplication::ShutdownType sdtype, m_title->setText( i18n( "Would you like to end your current session?" ) ); m_template = i18n( "This session will end\n" "after %1 seconds automatically." ); - m_logo->setPixmap( BarIcon( "previous", 48 ) ); + m_logo->setPixmap( BarIcon( "go-previous", 48 ) ); } updateText(); |