diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2009-04-29 00:52:52 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2009-04-29 00:52:52 +0200 |
commit | b60da9d6300097f31d163e86e2d689e9b2bc7cb6 (patch) | |
tree | 82531a3a09b8bf82ebcf234ac2b9f83f751718cb | |
parent | Searchbar fixes: no KDebug && QTimer shot in 200 ms (diff) | |
download | rekonq-b60da9d6300097f31d163e86e2d689e9b2bc7cb6.tar.xz |
Removed unused MainView loadUrlPage signal
-rw-r--r-- | src/mainview.cpp | 3 | ||||
-rw-r--r-- | src/mainview.h | 1 | ||||
-rw-r--r-- | src/mainwindow.cpp | 1 |
3 files changed, 1 insertions, 4 deletions
diff --git a/src/mainview.cpp b/src/mainview.cpp index 8f96637d..7a7b36b3 100644 --- a/src/mainview.cpp +++ b/src/mainview.cpp @@ -75,8 +75,7 @@ MainView::MainView(QWidget *parent) connect(m_tabBar, SIGNAL(reloadAllTabs()), this, SLOT(slotReloadAllTabs())); connect(m_tabBar, SIGNAL(tabMoved(int,int)), this, SLOT(moveTab(int,int))); - // -- - connect(this, SIGNAL(loadUrlPage(const KUrl &)), this, SLOT(loadUrlInCurrentTab(const KUrl &))); + // current page index changing connect(this, SIGNAL(currentChanged(int)), this, SLOT(slotCurrentChanged(int))); setTabsClosable(true); diff --git a/src/mainview.h b/src/mainview.h index b48023ed..c6f26a66 100644 --- a/src/mainview.h +++ b/src/mainview.h @@ -64,7 +64,6 @@ public: signals: // tab widget signals - void loadUrlPage(const KUrl &url); void tabsChanged(); void lastTabClosed(); diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp index 377f74a8..827f10c1 100644 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -103,7 +103,6 @@ MainWindow::MainWindow() setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding); // --------- connect signals and slots - connect(m_view, SIGNAL(loadUrlPage(const KUrl &)), this, SLOT(loadUrl(const KUrl &))); connect(m_view, SIGNAL(setCurrentTitle(const QString &)), this, SLOT(slotUpdateWindowTitle(const QString &))); connect(m_view, SIGNAL(loadProgress(int)), this, SLOT(slotLoadProgress(int))); connect(m_view, SIGNAL(geometryChangeRequested(const QRect &)), this, SLOT(geometryChangeRequested(const QRect &))); |