diff options
author | Aaron Kennedy <aaron.kennedy@nokia.com> | 2011-08-04 04:27:35 (GMT) |
---|---|---|
committer | Aaron Kennedy <aaron.kennedy@nokia.com> | 2011-08-04 04:27:35 (GMT) |
commit | 922b77c50dd3ae4f772d541e82d2e5f30a05b400 (patch) | |
tree | b8ac35053ba5a9713d0fc04c16b9d98e3524b5fb /src/declarative | |
parent | c3702db732744ea508522a96eb258d4873dd273f (diff) | |
download | Qt-922b77c50dd3ae4f772d541e82d2e5f30a05b400.zip Qt-922b77c50dd3ae4f772d541e82d2e5f30a05b400.tar.gz Qt-922b77c50dd3ae4f772d541e82d2e5f30a05b400.tar.bz2 |
Compile on symbian
Diffstat (limited to 'src/declarative')
-rw-r--r-- | src/declarative/qml/qdeclarativevme.cpp | 2 |
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; } |