summaryrefslogtreecommitdiffstats
path: root/konsole
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-13 20:10:05 -0500
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-13 20:10:05 -0500
commitaa8b192b5e9d0cd49e07e89fd0eaa567121ae1d3 (patch)
tree33c4e853e7520e62bba344641b0604e02afc9923 /konsole
parentab197a37e3e362ae3980f5bdd9840b0e4703e370 (diff)
downloadtdebase-aa8b192b5e9d0cd49e07e89fd0eaa567121ae1d3.tar.gz
tdebase-aa8b192b5e9d0cd49e07e89fd0eaa567121ae1d3.zip
Bring mail_forward, mail_new, mail_replyall, mail_reply, mail_send, player_pause, player_play, player_stop, player_rew, player_fwd, player_start, player_end, rotate_ccw, rotate_cw, window_fullscreen, window_nofullscreen, window_new, viewmagfit, viewmag+, viewmag1, and viewmag- icons into XDG compliance
Diffstat (limited to 'konsole')
-rw-r--r--konsole/konsole/konsole.cpp8
-rw-r--r--konsole/konsole/konsole_part.cpp4
2 files changed, 6 insertions, 6 deletions
diff --git a/konsole/konsole/konsole.cpp b/konsole/konsole/konsole.cpp
index 2c7e63cfd..4ba8b60ca 100644
--- a/konsole/konsole/konsole.cpp
+++ b/konsole/konsole/konsole.cpp
@@ -3507,9 +3507,9 @@ void Konsole::loadSessionCommands()
void Konsole::createSessionMenus()
{
if (no2command.isEmpty()) { // All sessions have been deleted
- m_session->insertItem(SmallIconSet("window_new"),
+ m_session->insertItem(SmallIconSet("window-new"),
i18n("New &Window"), SESSION_NEW_WINDOW_ID);
- m_tabbarSessionsCommands->insertItem(SmallIconSet("window_new"),
+ m_tabbarSessionsCommands->insertItem(SmallIconSet("window-new"),
i18n("New &Window"), SESSION_NEW_WINDOW_ID);
return;
}
@@ -3525,9 +3525,9 @@ void Konsole::createSessionMenus()
comment=txt.prepend(i18n("New "));
insertItemSorted(m_session, SmallIconSet(icon),
comment.replace('&',"&&"), SESSION_NEW_SHELL_ID);
- m_session->insertItem(SmallIconSet("window_new"),
+ m_session->insertItem(SmallIconSet("window-new"),
i18n("New &Window"), SESSION_NEW_WINDOW_ID);
- m_tabbarSessionsCommands->insertItem(SmallIconSet("window_new"),
+ m_tabbarSessionsCommands->insertItem(SmallIconSet("window-new"),
i18n("New &Window"), SESSION_NEW_WINDOW_ID);
m_session->insertSeparator();
m_tabbarSessionsCommands->insertSeparator();
diff --git a/konsole/konsole/konsole_part.cpp b/konsole/konsole/konsole_part.cpp
index 6cc900efc..1e02447d9 100644
--- a/konsole/konsole/konsole_part.cpp
+++ b/konsole/konsole/konsole_part.cpp
@@ -364,8 +364,8 @@ void konsolePart::makeGUI()
selectBell->plug(m_options);
m_fontsizes = new TDEActionMenu( i18n( "Font" ), SmallIconSet( "text" ), settingsActions, 0L );
- m_fontsizes->insert( new TDEAction( i18n( "&Enlarge Font" ), SmallIconSet( "viewmag+" ), 0, this, TQT_SLOT( biggerFont() ), settingsActions, "enlarge_font" ) );
- m_fontsizes->insert( new TDEAction( i18n( "&Shrink Font" ), SmallIconSet( "viewmag-" ), 0, this, TQT_SLOT( smallerFont() ), settingsActions, "shrink_font" ) );
+ m_fontsizes->insert( new TDEAction( i18n( "&Enlarge Font" ), SmallIconSet( "zoom-in" ), 0, this, TQT_SLOT( biggerFont() ), settingsActions, "enlarge_font" ) );
+ m_fontsizes->insert( new TDEAction( i18n( "&Shrink Font" ), SmallIconSet( "zoom-out" ), 0, this, TQT_SLOT( smallerFont() ), settingsActions, "shrink_font" ) );
m_fontsizes->insert( new TDEAction( i18n( "Se&lect..." ), SmallIconSet( "font" ), 0, this, TQT_SLOT( slotSelectFont() ), settingsActions, "select_font" ) );
m_fontsizes->plug(m_options);