diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2009-05-06 03:09:23 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2009-05-06 03:09:23 +0200 |
commit | 06b2dc0ce6ec6dd4cb090c22e2f9f8521138146b (patch) | |
tree | bdbc792266fea13099eecebe4c032f97a2eb2fea /src/download.cpp | |
parent | updating authors.. (diff) | |
download | rekonq-06b2dc0ce6ec6dd4cb090c22e2f9f8521138146b.tar.xz |
EBN Krazy fixes. 1st round..
Diffstat (limited to 'src/download.cpp')
-rw-r--r-- | src/download.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/download.cpp b/src/download.cpp index 9489b270..9a5b7a3d 100644 --- a/src/download.cpp +++ b/src/download.cpp @@ -67,7 +67,7 @@ void DownloadManager::newDownload(const KUrl &srcUrl, const KUrl &destUrl) KSharedPtr<KMimeType> mimeType = KMimeType::findByPath(srcUrl.prettyUrl()); QString typeText = KMimeType::extractKnownExtension(srcUrl.fileName()); - typeText += " (" + mimeType->name() + ")"; + typeText += " (" + mimeType->name() + ')'; int answer = KMessageBox::questionYesNoCancel(NULL, i18n("Download '%1'?\n""Type: %2", srcUrl.prettyUrl(), typeText), |