]> gitweb.stoutner.com Git - PrivacyBrowserPC.git/blobdiff - src/mainwindow.cpp
Add a zoom factor setting.
[PrivacyBrowserPC.git] / src / mainwindow.cpp
index 3564a8e7a71d32e638d4a6a0683de73552fa4473..c48e4955853c03f469af71149129dfa565127d36 100644 (file)
@@ -38,17 +38,6 @@ MainWindow::MainWindow() : KXmlGuiWindow()
     // Get a handle for the action collectoin.
     KActionCollection *actionCollectionPointer = this->actionCollection();
 
-    // Create a switch colorsaction pointer.
-    QAction *switchColorsActionPointer;
-
-    // Populate the switch colors action pointer.
-    switchColorsActionPointer = actionCollectionPointer->addAction(QStringLiteral("switch_action"));
-    switchColorsActionPointer->setText(i18nc("@action", "Switch Colors"));
-    switchColorsActionPointer->setIcon(QIcon::fromTheme(QStringLiteral("fill-color")));
-
-    // Connect the signals to the slots.
-    connect(switchColorsActionPointer, &QAction::triggered, mainViewPointer, &MainView::switchColors);
-
     // Add the standard actions.
     KStandardAction::openNew(this, SLOT(fileNew()), actionCollectionPointer);
     KStandardAction::quit(qApp, SLOT(closeAllWindows()), actionCollectionPointer);
@@ -82,7 +71,7 @@ void MainWindow::settingsConfigure()
         KConfigDialog *configDialogPointer = new KConfigDialog(this, QStringLiteral("settings"), Settings::self());
 
         // Add the general settings widget page.
-        configDialogPointer->addPage(generalSettingsWidgetPointer, i18nc("@title:tab", "General"), QStringLiteral("package_setting"));
+        configDialogPointer->addPage(generalSettingsWidgetPointer, i18nc("@title:tab", "General"), QStringLiteral("breeze-settings"));
 
         // Delete the config dialog when it is closed.
         configDialogPointer->setAttribute(Qt::WA_DeleteOnClose);