diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2010-07-21 13:04:14 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2010-07-21 13:04:14 +0200 |
commit | 644c7c8c062228c760b490838748c5f14547ff1c (patch) | |
tree | 624769f17e4a250712776eaeb095ac3585877066 /src/newtabpage.cpp | |
parent | Don't hide the bookmarks toolbar by default (diff) | |
download | rekonq-644c7c8c062228c760b490838748c5f14547ff1c.tar.xz |
Moving download history management from HistoryManager to Application class
It's actually the same, but probably a bit more coherent.
More over, we are going to change a lot of things in the HistoryManager class...
Diffstat (limited to 'src/newtabpage.cpp')
-rw-r--r-- | src/newtabpage.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/newtabpage.cpp b/src/newtabpage.cpp index cbdbe306..bbf6714e 100644 --- a/src/newtabpage.cpp +++ b/src/newtabpage.cpp @@ -549,7 +549,7 @@ void NewTabPage::downloadsPage() clearData.findFirst("span").appendInside(i18n("Clear Private Data")); m_root.document().findFirst("#actions").appendInside(clearData); - DownloadList list = Application::historyManager()->downloads(); + DownloadList list = Application::instance()->downloads(); if (list.isEmpty()) { |