summaryrefslogtreecommitdiffstats
path: root/src/declarative
diff options
context:
space:
mode:
Diffstat (limited to 'src/declarative')
-rw-r--r--src/declarative/qml/qdeclarativevme.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/declarative/qml/qdeclarativevme.cpp b/src/declarative/qml/qdeclarativevme.cpp
index 221e52c..a23f89d 100644
--- a/src/declarative/qml/qdeclarativevme.cpp
+++ b/src/declarative/qml/qdeclarativevme.cpp
@@ -1099,7 +1099,7 @@ void QDeclarativeVMEStack<T>::push(const T &o) {
Q_ASSERT(_index <= VLA::size());
if (_index == VLA::size())
- append(o);
+ VLA::append(o);
else
VLA::data()[_index] = o;
}