From fdaeafc70145e046c68556b143a559942ff65366 Mon Sep 17 00:00:00 2001 From: Christophe Dumez Date: Sat, 22 Aug 2009 13:44:05 +0000 Subject: [PATCH] - Fixed overwriting confirmation -> should have 'Yes/No' buttons, not 'Ok' --- src/FeedDownloader.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/FeedDownloader.h b/src/FeedDownloader.h index 2a062eb6b..b0476a9b6 100644 --- a/src/FeedDownloader.h +++ b/src/FeedDownloader.h @@ -466,7 +466,7 @@ protected slots: if(!destination.endsWith(".filters")) destination += ".filters"; if(QFile::exists(destination)) { - int ret = QMessageBox::question(0, tr("Overwriting confirmation"), tr("Are you sure you want to overwrite existing file?")); + int ret = QMessageBox::question(0, tr("Overwriting confirmation"), tr("Are you sure you want to overwrite existing file?"), QMessageBox::Yes|QMessageBox::No); if(ret != QMessageBox::Yes) return; } if(filters.serialize(destination))