From 9ffc63299ffe172bb418f6125a77075aaf0608e4 Mon Sep 17 00:00:00 2001 From: Andrea Diamantini Date: Sun, 17 May 2009 11:57:14 +0200 Subject: Removed "DontshowAgain" check in download dialog --- src/download.cpp | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'src/download.cpp') 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) { -- cgit v1.2.1