summaryrefslogtreecommitdiffstats
path: root/src/gui
diff options
context:
space:
mode:
authorDaiwei Li <daiweili@suitabletech.com>2013-08-01 17:24:47 -0700
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-08-03 21:51:38 +0200
commitbbf19fb29572785ef9b7fcccd2d2027f5c7603a6 (patch)
tree25e4d566a65158b96f308550c3079c93e64222c0 /src/gui
parent672fcbe9c6586e909513c91f5b36ad9a83a0ef1c (diff)
Fix ignoring closeEvents on OSX for QtQuick.
The QCloseEvent's accepted state should not be inverted for the QWindowSystemInterfacePrivate::CloseEvent. To make Widgets work with this change, pass whether the close was accepted from close_helper to the QCloseEvent generated by QGuiApplication. Task-number: QTBUG-28965 Change-Id: If384b0355776b93df02dff2ab78b5647903200e7 Reviewed-by: Gabriel de Dietrich <gabriel.dedietrich@digia.com> Reviewed-by: Josh Faust <jfaust@suitabletech.com>
Diffstat (limited to 'src/gui')
-rw-r--r--src/gui/kernel/qguiapplication.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/kernel/qguiapplication.cpp b/src/gui/kernel/qguiapplication.cpp
index bf8440cccf..7d2c710c52 100644
--- a/src/gui/kernel/qguiapplication.cpp
+++ b/src/gui/kernel/qguiapplication.cpp
@@ -1778,7 +1778,7 @@ void QGuiApplicationPrivate::processCloseEvent(QWindowSystemInterfacePrivate::Cl
QCloseEvent event;
QGuiApplication::sendSpontaneousEvent(e->window.data(), &event);
if (e->accepted) {
- *(e->accepted) = !event.isAccepted();
+ *(e->accepted) = event.isAccepted();
}
}