summaryrefslogtreecommitdiffstats
path: root/src/widgets/kernel/qwidget_qpa.cpp
diff options
context:
space:
mode:
authorLaszlo Agocs <laszlo.p.agocs@nokia.com>2011-05-27 16:06:53 +0200
committerLaszlo Agocs <laszlo.p.agocs@nokia.com>2011-05-30 14:41:13 +0200
commitef8e5af1d219dd749ea306230cfd097cc2595cb4 (patch)
tree5302f29027ce868d9e34710f321a4a64a1c34667 /src/widgets/kernel/qwidget_qpa.cpp
parentb48abb631f0e7f6728e56efbcf69802fca93c84f (diff)
The proper fix for subwindow parenting issues.
The previous patch tried to work around the fact that Qt::SubWindow accidentally pulled in Qt::Window. This patch corrects the root cause of the problem.
Diffstat (limited to 'src/widgets/kernel/qwidget_qpa.cpp')
-rw-r--r--src/widgets/kernel/qwidget_qpa.cpp14
1 files changed, 10 insertions, 4 deletions
diff --git a/src/widgets/kernel/qwidget_qpa.cpp b/src/widgets/kernel/qwidget_qpa.cpp
index c2b60d0387..2120e40c57 100644
--- a/src/widgets/kernel/qwidget_qpa.cpp
+++ b/src/widgets/kernel/qwidget_qpa.cpp
@@ -96,6 +96,12 @@ void QWidgetPrivate::create_sys(WId window, bool initializeWindow, bool destroyO
QWindowSurface *surface = q->windowSurface();
QWindow *win = topData()->window;
+ // topData() ensures the extra is created but does not ensure 'window' is non-null
+ // in case the extra was already valid.
+ if (!win) {
+ createTLSysExtra();
+ win = topData()->window;
+ }
win->setWindowFlags(data.window_flags);
win->setGeometry(q->geometry());
@@ -250,8 +256,8 @@ void QWidgetPrivate::setParent_sys(QWidget *newparent, Qt::WindowFlags f)
QPoint QWidget::mapToGlobal(const QPoint &pos) const
{
- int x=pos.x(), y=pos.y();
- const QWidget* w = this;
+ int x = pos.x(), y = pos.y();
+ const QWidget *w = this;
while (w) {
x += w->data->crect.x();
y += w->data->crect.y();
@@ -262,8 +268,8 @@ QPoint QWidget::mapToGlobal(const QPoint &pos) const
QPoint QWidget::mapFromGlobal(const QPoint &pos) const
{
- int x=pos.x(), y=pos.y();
- const QWidget* w = this;
+ int x = pos.x(), y = pos.y();
+ const QWidget *w = this;
while (w) {
x -= w->data->crect.x();
y -= w->data->crect.y();