From: Peter Penz Date: Mon, 11 Jan 2010 11:35:20 +0000 (+0000) Subject: Don't offer the "Get Service Menu..." action as public action that can be added to... X-Git-Url: https://cloud.milkyroute.net/gitweb/dolphin.git/commitdiff_plain/af3bf0958af68ae74045268039b6d3ed7ecc6513 Don't offer the "Get Service Menu..." action as public action that can be added to the toolbar (the action should only be available in the Dolphin preferences). BUG: 221766 svn path=/trunk/KDE/kdebase/apps/; revision=1073009 --- diff --git a/src/dolphinviewactionhandler.cpp b/src/dolphinviewactionhandler.cpp index 49a5f7e98..200d4e504 100644 --- a/src/dolphinviewactionhandler.cpp +++ b/src/dolphinviewactionhandler.cpp @@ -181,13 +181,6 @@ void DolphinViewActionHandler::createActions() findFile->setShortcut(Qt::CTRL | Qt::Key_F); findFile->setIcon(KIcon("edit-find")); connect(findFile, SIGNAL(triggered()), this, SLOT(slotFindFile())); - - // Settings menu - - KAction* getServiceMenu = m_actionCollection->addAction("get_servicemenu"); - getServiceMenu->setText(i18nc("@action:inmenu Settings", "Get Service Menu...")); - getServiceMenu->setIcon(KIcon("get-hot-new-stuff")); - connect(getServiceMenu, SIGNAL(triggered()), this, SLOT(slotGetServiceMenu())); } QActionGroup* DolphinViewActionHandler::createAdditionalInformationActionGroup()