diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2009-09-06 11:04:03 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2009-09-06 11:04:03 +0200 |
commit | 42e6065c5519a0cc78e9d66345d6786d5ad15874 (patch) | |
tree | b412a328f341c93bd07ccfc833b9befb5838e0af /src/mainwindow.cpp | |
parent | Simplified CookieJar management (diff) | |
download | rekonq-42e6065c5519a0cc78e9d66345d6786d5ad15874.tar.xz |
Fixing rekonq Multi Windows behaviour and
Added options about tabbed (or not) browsing..
Diffstat (limited to 'src/mainwindow.cpp')
-rw-r--r-- | src/mainwindow.cpp | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp index 04db6f6f..c2e86014 100644 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -191,7 +191,7 @@ void MainWindow::postLaunch() // --------- connect signals and slots connect(m_view, SIGNAL(setCurrentTitle(const QString &)), this, SLOT(slotUpdateWindowTitle(const QString &))); connect(m_view, SIGNAL(printRequested(QWebFrame *)), this, SLOT(printRequested(QWebFrame *))); - + // update toolbar actions signals connect(m_view, SIGNAL(tabsChanged()), this, SLOT(slotUpdateActions())); connect(m_view, SIGNAL(currentChanged(int)), this, SLOT(slotUpdateActions())); @@ -829,16 +829,6 @@ void MainWindow::slotOpenNext() } -// WARNING: this change will be there until rekonq'll have ONE mainwindow -// (probably forever..) -void MainWindow::geometryChangeRequested(const QRect &geometry) -{ - Q_UNUSED(geometry) -// setGeometry(geometry); - kDebug() << "No geometry change allowed"; -} - - bool MainWindow::queryClose() { if (m_view->count() > 1) |