From: Friedemann Kleint Date: Fri, 8 Jun 2012 12:34:48 +0000 (+0200) Subject: QWidget::destroy(): Release mouse and keyboard grab. X-Git-Tag: 071012110112~494 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1fb176eaf4a260c10dd336c4b42412b61799dbcf;p=profile%2Fivi%2Fqtbase.git QWidget::destroy(): Release mouse and keyboard grab. This used to happen in the platform widget code. Task-number: QTBUG-26079 Change-Id: Id6de7473c2fa4381a39114d5122e06e3bde159fa Reviewed-by: Girish Ramakrishnan --- diff --git a/src/widgets/kernel/qwidget_qpa.cpp b/src/widgets/kernel/qwidget_qpa.cpp index 8a6ceac..a7dd6bf 100644 --- a/src/widgets/kernel/qwidget_qpa.cpp +++ b/src/widgets/kernel/qwidget_qpa.cpp @@ -169,6 +169,10 @@ void QWidget::destroy(bool destroyWindow, bool destroySubWindows) if (this == QApplicationPrivate::active_window) QApplication::setActiveWindow(0); + if (QWidget::mouseGrabber() == this) + releaseMouse(); + if (QWidget::keyboardGrabber() == this) + releaseKeyboard(); setAttribute(Qt::WA_WState_Created, false);