diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2011-05-26 00:12:01 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2011-05-26 00:12:01 +0200 |
commit | 47bd57b5027f0fe34a6619d3d1902a9e67a16673 (patch) | |
tree | e02b667975eef3d35efa3ab325a67279065ff32e /src/mainwindow.cpp | |
parent | Fixes the size of a tab preview to a constant size, decorate it a bit (diff) | |
download | rekonq-47bd57b5027f0fe34a6619d3d1902a9e67a16673.tar.xz |
Adding DownloadManager class, following Pierre and Benjamin code changes.
First step in the introduction of the new rekonq pages
Diffstat (limited to 'src/mainwindow.cpp')
-rw-r--r-- | src/mainwindow.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp index e5818677..e401a93e 100644 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -40,6 +40,7 @@ #include "bookmarkprovider.h" #include "bookmarkspanel.h" #include "bookmarkstoolbar.h" +#include "downloadmanager.h" #include "findbar.h" #include "historypanel.h" #include "iconmanager.h" @@ -1289,7 +1290,7 @@ void MainWindow::clearPrivateData() if (clearWidget.clearDownloads->isChecked()) { - rApp->clearDownloadsHistory(); + rApp->downloadManager()->clearDownloadsHistory(); } if (clearWidget.clearCookies->isChecked()) |