diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2013-03-18 18:44:09 +0100 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2013-03-18 18:44:09 +0100 |
commit | 41870e5bf5d1ee398c5cb00dee5d3a1864df1b36 (patch) | |
tree | fcac266985a0cf32dcc204de1271913e540521fb /src/tabwindow | |
parent | Fix conditional compilation when compiled without activities (diff) | |
download | rekonq-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')
-rw-r--r-- | src/tabwindow/tabwidget.cpp | 4 |
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); } |