summaryrefslogtreecommitdiffstats
path: root/src/declarative/qml
diff options
context:
space:
mode:
authorErik Verbruggen <erik.verbruggen@nokia.com>2009-05-04 12:20:12 (GMT)
committerErik Verbruggen <erik.verbruggen@nokia.com>2009-05-04 12:20:12 (GMT)
commite5c47d29f829fc2a02e18ea48f6440cc5a1cc5ae (patch)
tree65f1ab4df165630aa96bd68513a9f551ff81cfbb /src/declarative/qml
parentd77e368795cf27131cdb625800c6d654aef6dd4e (diff)
downloadQt-e5c47d29f829fc2a02e18ea48f6440cc5a1cc5ae.zip
Qt-e5c47d29f829fc2a02e18ea48f6440cc5a1cc5ae.tar.gz
Qt-e5c47d29f829fc2a02e18ea48f6440cc5a1cc5ae.tar.bz2
Fixed initialization for QmlDomValueBinding.
Diffstat (limited to 'src/declarative/qml')
-rw-r--r--src/declarative/qml/qmldom.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/declarative/qml/qmldom.cpp b/src/declarative/qml/qmldom.cpp
index f8cf194..25fe00c 100644
--- a/src/declarative/qml/qmldom.cpp
+++ b/src/declarative/qml/qmldom.cpp
@@ -819,7 +819,8 @@ Rect { x: Other.x }
/*!
Construct an empty QmlDomValueBinding.
*/
-QmlDomValueBinding::QmlDomValueBinding()
+QmlDomValueBinding::QmlDomValueBinding():
+ d(new QmlDomBasicValuePrivate)
{
}