summaryrefslogtreecommitdiff
path: root/src/mainwindow.cpp
diff options
context:
space:
mode:
authorAndrea Diamantini <adjam7@gmail.com>2010-03-05 00:52:07 +0100
committerAndrea Diamantini <adjam7@gmail.com>2010-03-05 00:52:07 +0100
commit09ba3b9c585ad397c3168d1fb44f7f4dc75f0447 (patch)
tree758e1adbe634a8808a1f8570b1d949acb26e35db /src/mainwindow.cpp
parentFix Click to Flash. (diff)
downloadrekonq-09ba3b9c585ad397c3168d1fb44f7f4dc75f0447.tar.xz
Fix choice between history & bookmarks in the new tab first page.
No more reloading pages on accepting configuration
Diffstat (limited to 'src/mainwindow.cpp')
-rw-r--r--src/mainwindow.cpp9
1 files changed, 1 insertions, 8 deletions
diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp
index a02910fd..eebebc09 100644
--- a/src/mainwindow.cpp
+++ b/src/mainwindow.cpp
@@ -603,13 +603,6 @@ void MainWindow::updateConfiguration()
}
-void MainWindow::updateBrowser()
-{
- updateConfiguration();
- mainView()->reloadAllTabs();
-}
-
-
void MainWindow::openLocation()
{
m_view->urlBar()->selectAll();
@@ -646,7 +639,7 @@ void MainWindow::preferences()
QWeakPointer<SettingsDialog> s = new SettingsDialog(this);
// keep us informed when the user changes settings
- connect(s.data(), SIGNAL(settingsChanged(const QString&)), this, SLOT(updateBrowser()));
+ connect(s.data(), SIGNAL(settingsChanged(const QString&)), this, SLOT(updateConfiguration()));
s.data()->exec();
delete s.data();