summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAaron Kennedy <aaron.kennedy@nokia.com>2009-04-23 04:04:28 (GMT)
committerAaron Kennedy <aaron.kennedy@nokia.com>2009-04-23 04:04:28 (GMT)
commitccb43676bbe2f787eec90812e7f5af06f1bc3857 (patch)
tree672597e91d704147dd0dcd37780708434d253e10 /src
parentf494ca8c6e438b0099a7b36d93e38453726f6cb2 (diff)
downloadQt-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')
-rw-r--r--src/declarative/qml/qmllist.h2
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; }