From kde-commits Mon Feb 15 10:50:08 2010 From: Jonathan Marten Date: Mon, 15 Feb 2010 10:50:08 +0000 To: kde-commits Subject: KDE/kdepim/akregator/src Message-Id: <1266231008.275717.7454.nullmailer () svn ! kde ! org> X-MARC-Message: https://marc.info/?l=kde-commits&m=126623101707598 SVN commit 1090458 by marten: Use the same icons and text for the increase/decrease font sizes actions as used in Konqueror, for consistency. Reviewed at http://reviewboard.kde.org/r/2357/ BUG:218279 M +5 -5 actionmanagerimpl.cpp --- trunk/KDE/kdepim/akregator/src/actionmanagerimpl.cpp #1090457:1090458 @@ -535,19 +535,19 @@ action = coll->addAction("tab_remove"); action->setIcon(KIcon("tab-close")); - action->setText(i18n("&Close Tab")); + action->setText(i18n("Close Tab")); connect(action, SIGNAL(triggered(bool)), d->tabWidget, SLOT(slotCloseTab())); action->setShortcuts(KStandardShortcut::close()); action = coll->addAction("inc_font_sizes"); - action->setIcon(KIcon("zoom-in")); - action->setText(i18n("&Increase Font Sizes")); + action->setIcon(KIcon("format-font-size-more")); + action->setText(i18n("Enlarge Font")); connect(action, SIGNAL(triggered(bool)), d->tabWidget, SLOT(slotFrameZoomIn())); action->setShortcut( QKeySequence::ZoomIn ); action = coll->addAction("dec_font_sizes"); - action->setIcon(KIcon("zoom-out")); - action->setText(i18n("&Decrease Font Sizes")); + action->setIcon(KIcon("format-font-size-less")); + action->setText(i18n("Shrink Font")); connect(action, SIGNAL(triggered(bool)), d->tabWidget, SLOT(slotFrameZoomOut())); action->setShortcut( QKeySequence::ZoomOut ); }