diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/mainwindow.cpp | 11 | ||||
| -rw-r--r-- | src/mainwindow.h | 2 | ||||
| -rw-r--r-- | src/rekonqui.rc | 5 | 
3 files changed, 8 insertions, 10 deletions
| diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp index e25373e9..0b6bb738 100644 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -182,7 +182,6 @@ void MainWindow::setupActions()      KAction *a;      // Standard Actions -    KStandardAction::openNew(this, SLOT(slotFileNew()) , actionCollection());      KStandardAction::open(this, SLOT(slotFileOpen()), actionCollection());      KStandardAction::saveAs(this, SLOT(slotFileSaveAs()), actionCollection());      KStandardAction::printPreview(this, SLOT(slotFilePrintPreview()), actionCollection()); @@ -479,11 +478,11 @@ void MainWindow::slotUpdateWindowTitle(const QString &title)  } -void MainWindow::slotFileNew() -{ -    Application::instance()->newWebView(); -    slotHome(); -} +// void MainWindow::slotFileNew() +// { +//     Application::instance()->newWebView(); +//     slotHome(); +// }  void MainWindow::slotFileOpen() diff --git a/src/mainwindow.h b/src/mainwindow.h index 9e64022e..372d90a1 100644 --- a/src/mainwindow.h +++ b/src/mainwindow.h @@ -87,7 +87,7 @@ private slots:      void slotOpenNext();      // File Menu slots -    void slotFileNew(); +//     void slotFileNew();      void slotFileOpen();      void slotFilePrintPreview();      void slotFilePrint(); diff --git a/src/rekonqui.rc b/src/rekonqui.rc index 368c9226..37890393 100644 --- a/src/rekonqui.rc +++ b/src/rekonqui.rc @@ -6,7 +6,6 @@  <!--  ============ FILE menu =========== -->  <Menu name="file" noMerge="1"><text>&File</text> -    <Action name="file_new" />      <Action name="file_open" />      <Action name="open_location" />      <Separator/> @@ -18,8 +17,6 @@      <Action name="file_print_preview" />      <Action name="file_print" />      <Separator/> -    <Action name="private_browsing" /> -    <Separator/>      <Action name="file_quit" />  </Menu> @@ -59,6 +56,7 @@  <!--  ============ TOOLS menu =========== -->  <Menu name="tools" noMerge="1"><text>&Tools</text>      <Action name="web_inspector" /> +    <Action name="private_browsing" />  </Menu>  <!--  ============ SETTINGS menu =========== --> @@ -83,6 +81,7 @@      <Action name="history_forward" />      <Action name="stop_reload" />      <Action name="go_home" /> +    <Action name="new_tab" />  </ToolBar>  <!--  ============ Location ToolBar =========== --> | 
