diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-13 20:10:11 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-13 20:10:11 -0500 |
commit | ce1138c8ba3865132c2ea42d119f68a5417458ad (patch) | |
tree | 40453be7f11591c2a5851c86af291692a1a824b3 /kate | |
parent | bab4f22f92cb4960c7a7c17845813de2082ffdc9 (diff) | |
download | tdelibs-ce1138c8ba3865132c2ea42d119f68a5417458ad.tar.gz tdelibs-ce1138c8ba3865132c2ea42d119f68a5417458ad.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 'kate')
-rw-r--r-- | kate/part/kateview.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kate/part/kateview.cpp b/kate/part/kateview.cpp index 603d7dc3c..9bd819ebe 100644 --- a/kate/part/kateview.cpp +++ b/kate/part/kateview.cpp @@ -334,10 +334,10 @@ void KateView::setupActions() m_deSelect = a=KStdAction::deselect(TQT_TQOBJECT(this), TQT_SLOT(clearSelection()), ac); a->setWhatsThis(i18n("If you have selected something within the current document, this will no longer be selected.")); - a=new TDEAction(i18n("Enlarge Font"), "viewmag+", 0, TQT_TQOBJECT(m_viewInternal), TQT_SLOT(slotIncFontSizes()), ac, "incFontSizes"); + a=new TDEAction(i18n("Enlarge Font"), "zoom-in", 0, TQT_TQOBJECT(m_viewInternal), TQT_SLOT(slotIncFontSizes()), ac, "incFontSizes"); a->setWhatsThis(i18n("This increases the display font size.")); - a=new TDEAction(i18n("Shrink Font"), "viewmag-", 0, TQT_TQOBJECT(m_viewInternal), TQT_SLOT(slotDecFontSizes()), ac, "decFontSizes"); + a=new TDEAction(i18n("Shrink Font"), "zoom-out", 0, TQT_TQOBJECT(m_viewInternal), TQT_SLOT(slotDecFontSizes()), ac, "decFontSizes"); a->setWhatsThis(i18n("This decreases the display font size.")); a= m_toggleBlockSelection = new TDEToggleAction( |