diff options
| author | Andrea Diamantini <adjam7@gmail.com> | 2009-04-29 00:59:30 +0200 | 
|---|---|---|
| committer | Andrea Diamantini <adjam7@gmail.com> | 2009-04-29 00:59:30 +0200 | 
| commit | de7356aeb6fe480b13e7a9755388b1569090e24b (patch) | |
| tree | 0f09d9742f4468646a1f770a810049314bc28674 | |
| parent | Removed unused MainView loadUrlPage signal (diff) | |
| download | rekonq-de7356aeb6fe480b13e7a9755388b1569090e24b.tar.xz | |
Removed unused Application loadUrl method
| -rw-r--r-- | src/application.cpp | 6 | ||||
| -rw-r--r-- | src/application.h | 2 | 
2 files changed, 1 insertions, 7 deletions
| diff --git a/src/application.cpp b/src/application.cpp index b932203f..902c2946 100644 --- a/src/application.cpp +++ b/src/application.cpp @@ -135,12 +135,6 @@ void Application::slotSaveConfiguration() const  } -void Application::openUrl(const KUrl &url) -{ -    mainWindow()->loadUrl(url); -} - -  MainWindow *Application::mainWindow()  {      return m_mainWindow; diff --git a/src/application.h b/src/application.h index 234ed8e9..271e31a9 100644 --- a/src/application.h +++ b/src/application.h @@ -86,7 +86,7 @@ private slots:       * Any actions that can be delayed until the window is visible       */      void postLaunch(); -    void openUrl(const KUrl &url); +  private:      static QPointer<HistoryManager> s_historyManager; | 
