Remove unused slot for menu-bar-removal warning.

svn path=/trunk/extragear/sysadmin/partitionmanager/; revision=1329474
This commit is contained in:
Volker Lanz 2012-12-22 12:29:36 +00:00
parent 0336c4635d
commit 6ab19a9c49
2 changed files with 0 additions and 18 deletions

View File

@ -542,22 +542,6 @@ void MainWindow::on_m_PartitionManagerWidget_selectedPartitionChanged(const Part
enableActions();
}
void MainWindow::onShowMenuBar()
{
QAction* menuBarAction = actionCollection()->action(KStandardAction::name(KStandardAction::ShowMenubar));
if (menuBarAction->isChecked())
menuBar()->show();
else
{
const QString accel = menuBarAction->shortcut().toString();
KMessageBox::information(this, i18nc("@info", "This will hide the menu bar completely. You can show it again by typing %1.", accel), i18nc("@title:window", "Hide Menu Bar"), "hideMenuBarWarning");
menuBar()->hide();
}
Config::self()->setShowMenuBar(menuBarAction->isChecked());
}
void MainWindow::scanDevices()
{
Log(Log::information) << i18nc("@info/plain", "Using backend plugin: %1 (%2)",

View File

@ -142,8 +142,6 @@ class LIBPARTITIONMANAGERPRIVATE_EXPORT MainWindow : public KXmlGuiWindow, publi
void on_m_TreeLog_contextMenuRequested(const QPoint& pos);
void on_m_ListOperations_contextMenuRequested(const QPoint& pos);
void onShowMenuBar();
void scanDevices();
void onRefreshDevices();