diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/mainview.cpp | 16 | ||||
-rw-r--r-- | src/mainview.h | 7 |
2 files changed, 4 insertions, 19 deletions
diff --git a/src/mainview.cpp b/src/mainview.cpp index 1b2d4769..d8d1c2b5 100644 --- a/src/mainview.cpp +++ b/src/mainview.cpp @@ -364,16 +364,8 @@ WebView *MainView::newWebView(Rekonq::OpenType type) // connecting webPage signals with mainview connect(webView->page(), SIGNAL(windowCloseRequested()), this, SLOT(windowCloseRequested())); - connect(webView->page(), SIGNAL(geometryChangeRequested(const QRect &)), - this, SIGNAL(geometryChangeRequested(const QRect &))); connect(webView->page(), SIGNAL(printRequested(QWebFrame *)), this, SIGNAL(printRequested(QWebFrame *))); - connect(webView->page(), SIGNAL(menuBarVisibilityChangeRequested(bool)), - this, SIGNAL(menuBarVisibilityChangeRequested(bool))); - connect(webView->page(), SIGNAL(statusBarVisibilityChangeRequested(bool)), - this, SIGNAL(statusBarVisibilityChangeRequested(bool))); - connect(webView->page(), SIGNAL(toolBarVisibilityChangeRequested(bool)), - this, SIGNAL(toolBarVisibilityChangeRequested(bool))); addTab(webView, i18n("(Untitled)")); @@ -491,10 +483,10 @@ void MainView::slotCloseTab(int index) if (tab->isModified()) { int risp = KMessageBox::questionYesNo(this , - i18n("You have modified this page and when closing it you would lose the modification.\n" - "Do you really want to close this page?\n"), - i18n("Do you really want to close this page?") - ); + i18n("You have modified this page and when closing it you would lose the modification.\n" + "Do you really want to close this page?\n"), + i18n("Do you really want to close this page?") + ); if (risp == KMessageBox::No) return; } diff --git a/src/mainview.h b/src/mainview.h index 435ccc40..ff43576f 100644 --- a/src/mainview.h +++ b/src/mainview.h @@ -19,8 +19,6 @@ * ============================================================ */ - - #ifndef TABWIDGET_H #define TABWIDGET_H @@ -68,7 +66,6 @@ public: UrlBar *urlBar(int index) const; UrlBar *currentUrlBar() const; WebView *webView(int index) const; - QList<WebView *> tabs(); // ? // inlines TabBar *tabBar() const; @@ -98,10 +95,6 @@ signals: void linkHovered(const QString &link); void loadProgress(int progress); - void geometryChangeRequested(const QRect &geometry); - void menuBarVisibilityChangeRequested(bool visible); - void statusBarVisibilityChangeRequested(bool visible); - void toolBarVisibilityChangeRequested(bool visible); void printRequested(QWebFrame *frame); public slots: |