]> gitweb.stoutner.com Git - PrivacyBrowserPC.git/blobdiff - src/mainwindow.cpp
Add the URL line edit.
[PrivacyBrowserPC.git] / src / mainwindow.cpp
index 3564a8e7a71d32e638d4a6a0683de73552fa4473..1f7f34643832d83db1d14774441c8f95394c6e27 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);