diff options
Diffstat (limited to 'src/mainview.cpp')
-rw-r--r-- | src/mainview.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/mainview.cpp b/src/mainview.cpp index 4fa40b6d..a7ec6734 100644 --- a/src/mainview.cpp +++ b/src/mainview.cpp @@ -67,6 +67,7 @@ #include <QtGui/QPainter> #include <QtGui/QVBoxLayout> + MainView::MainView(QWidget *parent) : KTabWidget(parent) , m_urlBar(new UrlBar(this)) @@ -274,9 +275,6 @@ WebView *MainView::newWebView(bool focused, bool nearParent) connect(webView, SIGNAL(titleChanged(const QString &)), this, SLOT(webViewTitleChanged(const QString &))); connect(webView, SIGNAL(urlChanged(const QUrl &)), this, SLOT(webViewUrlChanged(const QUrl &))); - connect(webView, SIGNAL(ctrlTabPressed()), this, SLOT(nextTab())); - connect(webView, SIGNAL(shiftCtrlTabPressed()), this, SLOT(previousTab())); - // connecting webPage signals with mainview connect(webView->page(), SIGNAL(windowCloseRequested()), this, SLOT(windowCloseRequested())); connect(webView->page(), SIGNAL(printRequested(QWebFrame *)), this, SIGNAL(printRequested(QWebFrame *))); |