diff --git a/src/editor/kmcomposerwin.cpp b/src/editor/kmcomposerwin.cpp --- a/src/editor/kmcomposerwin.cpp +++ b/src/editor/kmcomposerwin.cpp @@ -1341,7 +1341,7 @@ KStandardAction::configureToolbars(this, &KMComposerWin::slotEditToolbars, actionCollection()); KStandardAction::preferences(kmkernel, &KMKernel::slotShowConfigurationDialog, actionCollection()); - action = new QAction(i18n("&Spellchecker..."), this); + action = new QAction(QIcon::fromTheme(QStringLiteral("tools-check-spelling")), i18n("&Spellchecker..."), this); action->setIconText(i18n("Spellchecker")); actionCollection()->addAction(QStringLiteral("setup_spellchecker"), action); connect(action, &QAction::triggered, this, &KMComposerWin::slotSpellcheckConfig); diff --git a/src/kmmainwidget.cpp b/src/kmmainwidget.cpp --- a/src/kmmainwidget.cpp +++ b/src/kmmainwidget.cpp @@ -3332,7 +3332,7 @@ //----- Settings Menu { - QAction *action = new QAction(i18n("Configure &Filters..."), this); + QAction *action = new QAction(QIcon::fromTheme(QStringLiteral("preferences-other")), i18n("Configure &Filters..."), this); action->setMenuRole(QAction::NoRole); // do not move to application menu on OS X actionCollection()->addAction(QStringLiteral("filter"), action); connect(action, &QAction::triggered, this, &KMMainWidget::slotFilter); @@ -3343,7 +3343,7 @@ connect(action, &QAction::triggered, this, &KMMainWidget::slotManageSieveScripts); } { - QAction *action = new QAction(i18n("&Add Account..."), this); + QAction *action = new QAction(QIcon::fromTheme(QStringLiteral("contact-new-symbolic")), i18n("&Add Account..."), this); actionCollection()->addAction(QStringLiteral("accountWizard"), action); connect(action, &QAction::triggered, mLaunchExternalComponent, &KMLaunchExternalComponent::slotAccountWizard); } @@ -3453,7 +3453,7 @@ actionCollection()->setDefaultShortcut(action, QKeySequence(Qt::Key_C)); } { - QAction *action = new QAction(i18n("Jump to Folder..."), this); + QAction *action = new QAction(QIcon::fromTheme(QStringLiteral("folder")), i18n("Jump to Folder..."), this); actionCollection()->addAction(QStringLiteral("jump_to_folder"), action); connect(action, &QAction::triggered, this, &KMMainWidget::slotJumpToFolder);