From 940a8b28e4287cd9e66d35983799dd09dc5ceb4b Mon Sep 17 00:00:00 2001 From: Christophe Dumez Date: Tue, 4 Dec 2007 12:07:00 +0000 Subject: [PATCH] - BUGFIX: Fixed possible problem when closing to systray and cancelling app exit ( closes #173832) --- TODO | 1 + src/GUI.cpp | 1 + 2 files changed, 2 insertions(+) diff --git a/TODO b/TODO index 7ad19e3f0..46aed7d24 100644 --- a/TODO +++ b/TODO @@ -59,4 +59,5 @@ rc9->rc10 changelog: - BUGFIX: Added a 3 minutes search engine timeout - BUGFIX: Limit search engine plugins to 10 result pages - BUGFIX: Fixed nbResults != 0 when clearing results while a search is running +- BUGFIX: Fixed possible problem when closing to systray and cancelling app exit - COSMETIC: Use more skin colors instead of hard coded ones diff --git a/src/GUI.cpp b/src/GUI.cpp index bccd41242..656a39893 100644 --- a/src/GUI.cpp +++ b/src/GUI.cpp @@ -467,6 +467,7 @@ void GUI::closeEvent(QCloseEvent *e) { tr("&Yes"), tr("&No"), QString(), 0, 1)) { e->ignore(); + force_exit = false; return; } }