[SCM] WebKit Debian packaging branch, debian/unstable, updated. debian/1.1.15-1-40151-g37bb677

gramps gramps at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 05:40:06 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 424bcd57fd3f1e002c4e38fc64f9b9095aebf69f
Author: gramps <gramps at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Tue Aug 28 20:19:29 2001 +0000

    Changes to get khtml/css/cssparser.cpp to compile
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@31 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/kwq/KWQPtrList.h b/WebCore/kwq/KWQPtrList.h
index 6acccf2..6a775c2 100644
--- a/WebCore/kwq/KWQPtrList.h
+++ b/WebCore/kwq/KWQPtrList.h
@@ -30,9 +30,26 @@
 
 template <class T> class QList {
 public:
+    // FIXME: should any of these functions be moved into a base collection
+    // class implementation?
     uint count() const;
     T *at(uint);
     void append(const T *);
+    void setAutoDelete(bool);
+    bool removeLast();
+    T *first();
+    T *next();
+    T *last();
+    bool isEmpty() const;
+    bool removeRef(const T *);
+};
+
+template <class T> class QListIterator {
+public:
+    QListIterator(const QList<T> &);
+    T *toLast();
+    T *current() const;
+    T *operator--();
 };
 
 #endif
diff --git a/WebCore/kwq/qt/qlist.h b/WebCore/kwq/qt/qlist.h
index 6acccf2..6a775c2 100644
--- a/WebCore/kwq/qt/qlist.h
+++ b/WebCore/kwq/qt/qlist.h
@@ -30,9 +30,26 @@
 
 template <class T> class QList {
 public:
+    // FIXME: should any of these functions be moved into a base collection
+    // class implementation?
     uint count() const;
     T *at(uint);
     void append(const T *);
+    void setAutoDelete(bool);
+    bool removeLast();
+    T *first();
+    T *next();
+    T *last();
+    bool isEmpty() const;
+    bool removeRef(const T *);
+};
+
+template <class T> class QListIterator {
+public:
+    QListIterator(const QList<T> &);
+    T *toLast();
+    T *current() const;
+    T *operator--();
 };
 
 #endif
diff --git a/WebCore/src/kwq/qt/qlist.h b/WebCore/src/kwq/qt/qlist.h
index 6acccf2..6a775c2 100644
--- a/WebCore/src/kwq/qt/qlist.h
+++ b/WebCore/src/kwq/qt/qlist.h
@@ -30,9 +30,26 @@
 
 template <class T> class QList {
 public:
+    // FIXME: should any of these functions be moved into a base collection
+    // class implementation?
     uint count() const;
     T *at(uint);
     void append(const T *);
+    void setAutoDelete(bool);
+    bool removeLast();
+    T *first();
+    T *next();
+    T *last();
+    bool isEmpty() const;
+    bool removeRef(const T *);
+};
+
+template <class T> class QListIterator {
+public:
+    QListIterator(const QList<T> &);
+    T *toLast();
+    T *current() const;
+    T *operator--();
 };
 
 #endif

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list