diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2009-04-28 03:40:54 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2009-04-28 03:40:54 +0200 |
commit | f7d0c1e847801b2ba303e6a0b60545779948fbbf (patch) | |
tree | d03faab7cb663d64a79f9287726ce406966e526f /src/application.cpp | |
parent | Revert "Some changes ported for merge to mainline (bookmarks & links handling... (diff) | |
download | rekonq-f7d0c1e847801b2ba303e6a0b60545779948fbbf.tar.xz |
Importing some reverted changes
Diffstat (limited to 'src/application.cpp')
-rw-r--r-- | src/application.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/application.cpp b/src/application.cpp index eee803bc..b932203f 100644 --- a/src/application.cpp +++ b/src/application.cpp @@ -147,9 +147,9 @@ MainWindow *Application::mainWindow() } -WebView *Application::newWebView() +WebView *Application::newWebView(bool makeCurrent) { - return m_mainWindow->mainView()->newWebView(); + return m_mainWindow->mainView()->newWebView(makeCurrent); } |