summaryrefslogtreecommitdiff
path: root/src/tabwindow/tabwidget.cpp
diff options
context:
space:
mode:
authorAndrea Diamantini <adjam7@gmail.com>2013-03-18 18:44:09 +0100
committerAndrea Diamantini <adjam7@gmail.com>2013-03-18 18:44:09 +0100
commit41870e5bf5d1ee398c5cb00dee5d3a1864df1b36 (patch)
treefcac266985a0cf32dcc204de1271913e540521fb /src/tabwindow/tabwidget.cpp
parentFix conditional compilation when compiled without activities (diff)
downloadrekonq-41870e5bf5d1ee398c5cb00dee5d3a1864df1b36.tar.xz
Remove the "AutoSaver" attempt :(
I tried to save disk writes. But everytime people is finding some saved (or just delayed) saves that are NOT ok. We'll see to find another way to... BUG: 316938
Diffstat (limited to 'src/tabwindow/tabwidget.cpp')
-rw-r--r--src/tabwindow/tabwidget.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tabwindow/tabwidget.cpp b/src/tabwindow/tabwidget.cpp
index d74f0778..a7b4f2be 100644
--- a/src/tabwindow/tabwidget.cpp
+++ b/src/tabwindow/tabwidget.cpp
@@ -376,12 +376,12 @@ void TabWidget::loadUrl(const KUrl &url, Rekonq::OpenType type, TabHistory *hist
break;
};
- tab->load(url);
-
if (history)
{
history->applyHistory(tab->page()->history());
}
+
+ tab->load(url);
}