[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:39:59 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit e327020b7396f13ac888e9755e3e902e0bfffbc6
Author: gramps <gramps at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Tue Aug 28 18:03:51 2001 +0000

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

diff --git a/WebCore/kwq/KWQString.h b/WebCore/kwq/KWQString.h
index 89eb309..f2b91d1 100644
--- a/WebCore/kwq/KWQString.h
+++ b/WebCore/kwq/KWQString.h
@@ -37,7 +37,8 @@ public:
     QChar(const QChar &);
     QChar lower() const;
     char latin1() const;
-    bool isDigit();
+    bool isDigit() const;
+    bool isSpace() const;
     friend inline int operator==(QChar, QChar);
     friend inline int operator!=(QChar, QChar);
 };
@@ -45,12 +46,17 @@ public:
 class QString {
 public:
     QString();
+    QString(const QChar *, uint);
     int toInt() const;
     int toInt(bool *) const;
     bool isNull() const;
     const QChar *unicode() const;
     uint length() const;
     QString &sprintf(const char *format, ...);
+    QString lower() const;
+    QString stripWhiteSpace() const;
+    bool isEmpty() const;
+    int contains(const char *) const;
 
     static const QString null;
 
diff --git a/WebCore/kwq/qt/qstring.h b/WebCore/kwq/qt/qstring.h
index 89eb309..f2b91d1 100644
--- a/WebCore/kwq/qt/qstring.h
+++ b/WebCore/kwq/qt/qstring.h
@@ -37,7 +37,8 @@ public:
     QChar(const QChar &);
     QChar lower() const;
     char latin1() const;
-    bool isDigit();
+    bool isDigit() const;
+    bool isSpace() const;
     friend inline int operator==(QChar, QChar);
     friend inline int operator!=(QChar, QChar);
 };
@@ -45,12 +46,17 @@ public:
 class QString {
 public:
     QString();
+    QString(const QChar *, uint);
     int toInt() const;
     int toInt(bool *) const;
     bool isNull() const;
     const QChar *unicode() const;
     uint length() const;
     QString &sprintf(const char *format, ...);
+    QString lower() const;
+    QString stripWhiteSpace() const;
+    bool isEmpty() const;
+    int contains(const char *) const;
 
     static const QString null;
 
diff --git a/WebCore/src/kwq/qt/qstring.h b/WebCore/src/kwq/qt/qstring.h
index 89eb309..f2b91d1 100644
--- a/WebCore/src/kwq/qt/qstring.h
+++ b/WebCore/src/kwq/qt/qstring.h
@@ -37,7 +37,8 @@ public:
     QChar(const QChar &);
     QChar lower() const;
     char latin1() const;
-    bool isDigit();
+    bool isDigit() const;
+    bool isSpace() const;
     friend inline int operator==(QChar, QChar);
     friend inline int operator!=(QChar, QChar);
 };
@@ -45,12 +46,17 @@ public:
 class QString {
 public:
     QString();
+    QString(const QChar *, uint);
     int toInt() const;
     int toInt(bool *) const;
     bool isNull() const;
     const QChar *unicode() const;
     uint length() const;
     QString &sprintf(const char *format, ...);
+    QString lower() const;
+    QString stripWhiteSpace() const;
+    bool isEmpty() const;
+    int contains(const char *) const;
 
     static const QString null;
 

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list