summaryrefslogtreecommitdiff
path: root/src/mainview.cpp
diff options
context:
space:
mode:
authorDavid E. Narváez <david.narvaez@computer.org>2012-03-08 07:40:20 -0500
committerDavid E. Narváez <david.narvaez@computer.org>2012-03-08 07:40:20 -0500
commit3aab58b17eec73d3a7134650ec059c31f51bd108 (patch)
tree5b4142a9405d01534edd566eeb440121889f6881 /src/mainview.cpp
parentDon't show dots after "Save Link" text if we are not going to ask for (diff)
downloadrekonq-3aab58b17eec73d3a7134650ec059c31f51bd108.tar.xz
Include Tab History when Cloning a Tab
Implemented through a new loadUrl method that allows for the caller to specify the QWebHistory pointer from where to copy the history. Redirected the original loadUrl slot to use this new method internally. The method returns the WebTab * just in case we need to maninpulate the created tab in the future. REVIEW: 104082
Diffstat (limited to 'src/mainview.cpp')
-rw-r--r--src/mainview.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mainview.cpp b/src/mainview.cpp
index 19e5531d..9fa4d049 100644
--- a/src/mainview.cpp
+++ b/src/mainview.cpp
@@ -414,8 +414,9 @@ void MainView::cloneTab(int index)
return;
KUrl url = webTab(index)->url();
+ QWebHistory * history = webTab(index)->view()->history();
- rApp->loadUrl(url, Rekonq::NewTab);
+ rApp->loadUrl(url, history, Rekonq::NewTab);
}