diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2009-06-01 00:58:58 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2009-06-01 23:59:35 +0200 |
commit | 45d8abb15061ffb6a5c2f4b9ec643234eccc452a (patch) | |
tree | a0a3903419630c41702507c51724860dd38f3659 /src/mainwindow.cpp | |
parent | Merge branch 'review/master' (diff) | |
download | rekonq-45d8abb15061ffb6a5c2f4b9ec643234eccc452a.tar.xz |
Removed unuseful download classes
Diffstat (limited to 'src/mainwindow.cpp')
-rw-r--r-- | src/mainwindow.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp index 73ec3d6d..f47c6677 100644 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -37,7 +37,6 @@ #include "webview.h" #include "mainview.h" #include "bookmarks.h" -#include "download.h" #include "findbar.h" #include "sidepanel.h" #include "urlbar.h" @@ -485,7 +484,7 @@ void MainWindow::slotOpenLocation() void MainWindow::slotFileSaveAs() { KUrl srcUrl = currentTab()->url(); - Application::downloadManager()->newDownload(srcUrl); + // FIXME implement download file } |