Changed: Disable Settings and Uninstall menus (only there for debugging purposes), see #279

This commit is contained in:
kervala 2016-09-14 08:14:34 +02:00
parent b636a7376e
commit 90b9372fe3

View file

@ -41,6 +41,11 @@ CMainWindow::CMainWindow():QMainWindow()
connect(m_downloader, SIGNAL(htmlPageContent(QString)), SLOT(onHtmlPageContent(QString)));
connect(actionProfiles, SIGNAL(triggered()), SLOT(onProfiles()));
// remove debug options
actionSettings->setVisible(false);
actionUninstall->setVisible(false);
connect(actionSettings, SIGNAL(triggered()), SLOT(onSettings()));
connect(actionUninstall, SIGNAL(triggered()), SLOT(onUninstall()));
connect(actionQuit, SIGNAL(triggered()), SLOT(onQuit()));