diff options
| author | adjam <adjam@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-05-17 09:58:51 +0000 | 
|---|---|---|
| committer | adjam <adjam@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-05-17 09:58:51 +0000 | 
| commit | 96766d61724879a3dab8da115e0fb5ba019de973 (patch) | |
| tree | ae54e03a3d64d362b68cce8e72260dd36985f2ba /src | |
| parent | Merge branch 'master' into local-svn (diff) | |
| parent | Removed "DontshowAgain" check in download dialog (diff) | |
| download | rekonq-96766d61724879a3dab8da115e0fb5ba019de973.tar.xz | |
Merge branch 'develop' into local-svn
git-svn-id: svn+ssh://svn.kde.org/home/kde/trunk/playground/network/rekonq@969009 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src')
| -rw-r--r-- | src/download.cpp | 16 | 
1 files changed, 8 insertions, 8 deletions
| 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)      { | 
