aboutsummaryrefslogtreecommitdiffstats
path: root/src/templates/qquickstackview_p.h
diff options
context:
space:
mode:
authorJ-P Nurmi <jpnurmi@theqtcompany.com>2015-10-11 00:04:55 +0200
committerJ-P Nurmi <jpnurmi@theqtcompany.com>2015-10-11 13:05:28 +0000
commitaa634f86429ad15fced74a5a65e7d170b5e7e9ff (patch)
tree21e24400e65ff10e5f45a6b93230de77b9f36aa1 /src/templates/qquickstackview_p.h
parent9d4c6278217fecefa15c52073f8de0e6f0e7700d (diff)
Fix StackView attached property
The attached properties weren't initialized at all for the initial item. Furthermore, the properties were initialized lazily, which made them work for imperative tests, but not correctly in bindings. Change-Id: I783c406dcf4e1cf27a6b4e6ddd43214cb06a3c7a Reviewed-by: J-P Nurmi <jpnurmi@theqtcompany.com>
Diffstat (limited to 'src/templates/qquickstackview_p.h')
-rw-r--r--src/templates/qquickstackview_p.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/templates/qquickstackview_p.h b/src/templates/qquickstackview_p.h
index a530738a..7f989faf 100644
--- a/src/templates/qquickstackview_p.h
+++ b/src/templates/qquickstackview_p.h
@@ -157,6 +157,7 @@ class Q_LABSTEMPLATES_EXPORT QQuickStackAttached : public QObject
public:
explicit QQuickStackAttached(QQuickItem *parent = Q_NULLPTR);
+ ~QQuickStackAttached();
int index() const;
QQuickStackView *view() const;