diff options
author | Gabriel de Dietrich <gabriel.dietrich-de@nokia.com> | 2010-04-19 17:13:20 (GMT) |
---|---|---|
committer | Gabriel de Dietrich <gabriel.dietrich-de@nokia.com> | 2010-04-20 09:49:16 (GMT) |
commit | 434d2312b63090cfd2ba7e0f3728b5b225bcaeec (patch) | |
tree | 934dd144a1b99d1da4bbc07981a7ca9003640317 /src/gui/dialogs/qdialog.h | |
parent | 67ffe10585bc683cd160cef95fef55e8301a6ab5 (diff) | |
download | Qt-434d2312b63090cfd2ba7e0f3728b5b225bcaeec.zip Qt-434d2312b63090cfd2ba7e0f3728b5b225bcaeec.tar.gz Qt-434d2312b63090cfd2ba7e0f3728b5b225bcaeec.tar.bz2 |
QDialog: user-moved dialog would not show on the same place after hide
The Qt::WA_Moved was not being set during the move event as notified
by the window manager. This is a behavior change for 4.7, but we think
it's more user friendly than the previous behavior.
Reviewed-by: mbm
Task-number: QTBUG-9991
Diffstat (limited to 'src/gui/dialogs/qdialog.h')
-rw-r--r-- | src/gui/dialogs/qdialog.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/gui/dialogs/qdialog.h b/src/gui/dialogs/qdialog.h index 777256a..7ab0cb6 100644 --- a/src/gui/dialogs/qdialog.h +++ b/src/gui/dialogs/qdialog.h @@ -107,9 +107,7 @@ public Q_SLOTS: protected: QDialog(QDialogPrivate &, QWidget *parent, Qt::WindowFlags f = 0); -#if defined(Q_WS_WINCE) || defined(Q_WS_S60) bool event(QEvent *e); -#endif void keyPressEvent(QKeyEvent *); void closeEvent(QCloseEvent *); void showEvent(QShowEvent *); |