aboutsummaryrefslogtreecommitdiffstats
path: root/src/templates
diff options
context:
space:
mode:
authorJ-P Nurmi <jpnurmi@theqtcompany.com>2016-02-25 17:46:30 +0100
committerJ-P Nurmi <jpnurmi@theqtcompany.com>2016-02-25 16:47:07 +0000
commitdb5780507733ef803e963dcef0b5260c4b94acfa (patch)
treeb7e08f655bbd261afda7b9eb1dd2c16c753ce164 /src/templates
parentcf81228a0537846556341779728752a771422544 (diff)
QQuickPopup: fix uninitialized variable
Change-Id: I339fdb284d65859b5df3a120fc806beaf950031b Reviewed-by: J-P Nurmi <jpnurmi@theqtcompany.com>
Diffstat (limited to 'src/templates')
-rw-r--r--src/templates/qquickpopup.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/templates/qquickpopup.cpp b/src/templates/qquickpopup.cpp
index 7ac0369f..f9cf2f51 100644
--- a/src/templates/qquickpopup.cpp
+++ b/src/templates/qquickpopup.cpp
@@ -105,6 +105,7 @@ QQuickPopupPrivate::QQuickPopupPrivate()
: QObjectPrivate()
, focus(false)
, modal(false)
+ , complete(false)
, hasTopMargin(false)
, hasLeftMargin(false)
, hasRightMargin(false)