summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--TODO1
-rw-r--r--src/download.cpp16
2 files changed, 9 insertions, 8 deletions
diff --git a/TODO b/TODO
index 9ce53468..df2a72ac 100644
--- a/TODO
+++ b/TODO
@@ -16,6 +16,7 @@ TO 0.2 release
- unique url/search/history bar
- WebkitKDE (ask about status)
+- cookie system refactor
- bookmarks panel
- MimeType Manager
- BETTER KDE INTEGRATION (What else to be done??)
diff --git a/src/download.cpp b/src/download.cpp
index a5aa73bd..c365d3c5 100644
--- a/src/download.cpp
+++ b/src/download.cpp
@@ -69,14 +69,14 @@ void DownloadManager::newDownload(const KUrl &srcUrl, const KUrl &destUrl)
QString typeText = KMimeType::extractKnownExtension(srcUrl.fileName());
typeText += " (" + mimeType->name() + ')';
- int answer = KMessageBox::questionYesNoCancel(NULL,
- i18n("Download '%1'?\n""Type: %2", srcUrl.prettyUrl(), typeText),
- i18n("Download '%1'...", srcUrl.fileName()),
- KStandardGuiItem::save(),
- KStandardGuiItem::open(),
- KStandardGuiItem::cancel(),
- "showOpenSaveDownloadDialog"
- );
+ int answer = KMessageBox::questionYesNoCancel(
+ NULL,
+ i18n("Download '%1'?\n""Type: %2", srcUrl.prettyUrl(), typeText),
+ i18n("Download '%1'...", srcUrl.fileName()),
+ KStandardGuiItem::save(),
+ KStandardGuiItem::open(),
+ KStandardGuiItem::cancel()
+ );
switch (answer)
{