diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2009-05-01 03:20:42 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2009-05-01 03:20:42 +0200 |
commit | 55816b45e681f10c9b45675dba65575d01d9efe3 (patch) | |
tree | 9469fd723a8166e2764614c70b2953f7e7a9036a /src/application.cpp | |
parent | Open tabs in brackground. Step 1 (diff) | |
download | rekonq-55816b45e681f10c9b45675dba65575d01d9efe3.tar.xz |
Managing user tab open settings. Step 2
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 03c0f442..ec24691e 100644 --- a/src/application.cpp +++ b/src/application.cpp @@ -141,9 +141,9 @@ MainWindow *Application::mainWindow() } -WebView *Application::newWebView(bool makeCurrent) +WebView *Application::newWebView(Rekonq::OpenType type) { - return m_mainWindow->mainView()->newWebView(makeCurrent); + return m_mainWindow->mainView()->newWebView(type); } |