From: Burkhard Lück Date: Mon, 13 Jun 2011 06:26:07 +0000 (+0200) Subject: Add missing actions to report bug + switch language to Help menu in dolphin whithout... X-Git-Url: https://cloud.milkyroute.net/gitweb/dolphin.git/commitdiff_plain/7ca4e389be7a31e245d0fe467ba70d195a51efc2?ds=inline Add missing actions to report bug + switch language to Help menu in dolphin whithout menubar Using Dolphin in default mode in master/4.7 whithout menubar the user has no actions to report a bug or switch language. Add these missing actions the Help menu launched from the toolbar button Configure and control Dolphin. REVIEW: 101597 --- diff --git a/src/dolphinmainwindow.cpp b/src/dolphinmainwindow.cpp index 198e2da77..0f075a11c 100644 --- a/src/dolphinmainwindow.cpp +++ b/src/dolphinmainwindow.cpp @@ -1479,6 +1479,8 @@ void DolphinMainWindow::updateToolBarMenu() connect(menu, SIGNAL(aboutToHide()), helpMenu, SLOT(deleteLater())); helpMenu->addAction(ac->action(KStandardAction::name(KStandardAction::HelpContents))); helpMenu->addAction(ac->action(KStandardAction::name(KStandardAction::WhatsThis))); + helpMenu->addAction(ac->action(KStandardAction::name(KStandardAction::ReportBug))); + helpMenu->addAction(ac->action(KStandardAction::name(KStandardAction::SwitchApplicationLanguage))); helpMenu->addAction(ac->action(KStandardAction::name(KStandardAction::AboutApp))); helpMenu->addAction(ac->action(KStandardAction::name(KStandardAction::AboutKDE))); menu->addMenu(helpMenu);