diff options
author | Aaron Kennedy <aaron.kennedy@nokia.com> | 2009-04-23 04:04:28 (GMT) |
---|---|---|
committer | Aaron Kennedy <aaron.kennedy@nokia.com> | 2009-04-23 04:04:28 (GMT) |
commit | ccb43676bbe2f787eec90812e7f5af06f1bc3857 (patch) | |
tree | 672597e91d704147dd0dcd37780708434d253e10 /src/declarative/qml | |
parent | f494ca8c6e438b0099a7b36d93e38453726f6cb2 (diff) | |
download | Qt-ccb43676bbe2f787eec90812e7f5af06f1bc3857.zip Qt-ccb43676bbe2f787eec90812e7f5af06f1bc3857.tar.gz Qt-ccb43676bbe2f787eec90812e7f5af06f1bc3857.tar.bz2 |
Make declarative autotests compile.
No guarentees are made as to whether they pass.
Diffstat (limited to 'src/declarative/qml')
-rw-r--r-- | src/declarative/qml/qmllist.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/declarative/qml/qmllist.h b/src/declarative/qml/qmllist.h index 3a1e665..cc13924 100644 --- a/src/declarative/qml/qmllist.h +++ b/src/declarative/qml/qmllist.h @@ -56,7 +56,9 @@ class QmlList : private QmlPrivate::ListInterface public: virtual void append(T) = 0; virtual void insert(int, T) = 0; + virtual void removeAt(int) = 0; virtual T at(int) const = 0; + virtual int count() const = 0; virtual void clear() = 0; QmlList<T> &operator<<(T t) { append(t); return *this; } |