From 2665e2ef3956be985b199a4edc492d07a5e7bec7 Mon Sep 17 00:00:00 2001 From: Christophe Dumez Date: Tue, 22 Jun 2010 17:51:59 +0000 Subject: [PATCH] Fixed exit confirmation title --- src/GUI.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/GUI.cpp b/src/GUI.cpp index 5ea4c92a2..e75e05132 100644 --- a/src/GUI.cpp +++ b/src/GUI.cpp @@ -575,7 +575,7 @@ void GUI::closeEvent(QCloseEvent *e) { if(e->spontaneous() || force_exit) { if(!isVisible()) show(); - QMessageBox confirmBox(QMessageBox::Question, tr("Are you sure you want to quit?")+QString::fromUtf8(" -- ")+tr("qBittorrent"), + QMessageBox confirmBox(QMessageBox::Question, tr("Exiting qBittorrent"), tr("Some files are currently transferring.\nAre you sure you want to quit qBittorrent?"), QMessageBox::NoButton, this); QPushButton *noBtn = confirmBox.addButton(tr("No"), QMessageBox::NoRole);