diff options
author | Furkan Uzumcu <furkanuzumcu@gmail.com> | 2012-01-06 10:51:59 +0100 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2012-01-06 10:51:59 +0100 |
commit | 9b5583f638e07e25041ed688c7cb7b252846d0ca (patch) | |
tree | 7b3a4d411fd1c590eef0fe57c8292d79ae640d74 /src | |
parent | CMakeLists.txt fix. (diff) | |
download | rekonq-9b5583f638e07e25041ed688c7cb7b252846d0ca.tar.xz |
Downloaded files seem removed even though they are not removed in
Downloads Page. This patch fixes it.
REVIEW: 103635
REVIEWED-BY: adjam
Diffstat (limited to 'src')
-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 a073117c..894412ce 100644 --- a/src/newtabpage.cpp +++ b/src/newtabpage.cpp @@ -480,7 +480,7 @@ void NewTabPage::downloadsPage() KUrl u = KUrl(item->destinationUrl()); QString fName = u.fileName(); - QString dir = QL1S("file://") + u.directory(); + QString dir = u.directory(); QString file = dir + fName; KIconLoader *loader = KIconLoader::global(); |