diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2009-09-30 10:21:58 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2009-09-30 10:21:58 +0200 |
commit | b4516b0bacb68179eb6f7cbff9c6474ec03cc9ab (patch) | |
tree | ac6ffe5c874627302ddbce6a7dd350e1b6efb0c6 /src/mainview.cpp | |
parent | a lot fo changes in the history/bookmarks page (restored initial method rewam... (diff) | |
download | rekonq-b4516b0bacb68179eb6f7cbff9c6474ec03cc9ab.tar.xz |
BIG BIG commit
removed:
- last closed tabs feature
- new tab page settings (unuseful, we need something better)
implemented
- new home page layout (needs love)
- new about: protocol to load home page sections
- preview images cache
todo:
- cleaning cache mechanism
- bug fixing
- add/remove to preferred actions
Diffstat (limited to 'src/mainview.cpp')
-rw-r--r-- | src/mainview.cpp | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/mainview.cpp b/src/mainview.cpp index 231700a0..d02dd37d 100644 --- a/src/mainview.cpp +++ b/src/mainview.cpp @@ -183,8 +183,6 @@ void MainView::clear() /// TODO What exactly do we need to clear here? m_urlBar->clearHistory(); m_urlBar->clear(); - - m_recentlyClosedTabs.clear(); } @@ -418,8 +416,6 @@ void MainView::slotCloseTab(int index) return; } hasFocus = tab->hasFocus(); - - m_recentlyClosedTabs.prepend(tab->url()); } QWidget *webView = widget(index); @@ -586,12 +582,6 @@ void MainView::resizeEvent(QResizeEvent *event) } -KUrl::List MainView::recentlyClosedTabs() -{ - return m_recentlyClosedTabs; -} - - void MainView::mouseMoveEvent(QMouseEvent *event) { //Find the tab under the mouse |