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

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


The following commit has been merged in the debian/unstable branch:
commit c4e347b61671b97e6fe2a3ecd0f1a98831ddc9c5
Author: kocienda <kocienda at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Wed Aug 29 16:54:00 2001 +0000

    Replaced tabs with spaces
    Added khtml/xml to top-level Makefile
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@42 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/Makefile.in b/WebCore/Makefile.in
index d85ad79..0193526 100644
--- a/WebCore/Makefile.in
+++ b/WebCore/Makefile.in
@@ -19,6 +19,7 @@ include $(TOPSRCDIR)/Makefile.vars
 SUBDIRS = \
 	src/kdelibs/kjs \
 	src/kdelibs/khtml/dom \
+	src/kdelibs/khtml/xml \
 	$(NULL)
 
 #----------------------------------------------------------------------
diff --git a/WebCore/kwq/KWQApplication.h b/WebCore/kwq/KWQApplication.h
index e6ff0ed..f12533f 100644
--- a/WebCore/kwq/KWQApplication.h
+++ b/WebCore/kwq/KWQApplication.h
@@ -31,7 +31,7 @@
 
 class QApplication {
 public:
-	static QPalette palette(const QWidget* = 0);
+    static QPalette palette(const QWidget* = 0);
 };
 
 #endif
diff --git a/WebCore/kwq/KWQCollection.h b/WebCore/kwq/KWQCollection.h
index 38cd0a4..2d45385 100644
--- a/WebCore/kwq/KWQCollection.h
+++ b/WebCore/kwq/KWQCollection.h
@@ -28,9 +28,9 @@
 
 class QCollection {
 public:
-	typedef void *Item;
+    typedef void *Item;
 protected:
-	virtual Item newItem(Item);
+    virtual Item newItem(Item);
 };
 
 #endif
diff --git a/WebCore/kwq/KWQDateTime.h b/WebCore/kwq/KWQDateTime.h
index 85028b1..c670a7c 100644
--- a/WebCore/kwq/KWQDateTime.h
+++ b/WebCore/kwq/KWQDateTime.h
@@ -28,28 +28,28 @@
 
 class QTime {
 public:
-	QTime();
-	QTime(int h, int m);
-	QTime(const QTime &other);
+    QTime();
+    QTime(int h, int m);
+    QTime(const QTime &other);
 
-	void start();
-	int msec() const;
+    void start();
+    int msec() const;
 };
 
 class QDate {
 public:
-	QDate(int y, int m, int d);
+    QDate(int y, int m, int d);
 };
 
 class QDateTime {
 public:
-	QDateTime();
-	QDateTime(QDate date, QTime time);
+    QDateTime();
+    QDateTime(QDate date, QTime time);
 
-	static QDateTime currentDateTime();
+    static QDateTime currentDateTime();
 
-	int secsTo(const QDateTime &) const;
-	QTime time() const;
+    int secsTo(const QDateTime &) const;
+    QTime time() const;
 };
 
 #endif
diff --git a/WebCore/kwq/KWQEvent.h b/WebCore/kwq/KWQEvent.h
index 24dea55..2a2099f 100644
--- a/WebCore/kwq/KWQEvent.h
+++ b/WebCore/kwq/KWQEvent.h
@@ -31,23 +31,23 @@
 
 class QEvent : public Qt {
 public:
-	enum Type {
-		MouseButtonPress,
-		MouseButtonRelease,
-		MouseButtonDblClick,
-		MouseMove,
-	};
-	Type type() const;
+    enum Type {
+        MouseButtonPress,
+        MouseButtonRelease,
+        MouseButtonDblClick,
+        MouseMove,
+    };
+    Type type() const;
 };
 
 class QMouseEvent : public QEvent {
 public:
-	int x();
-	int y();
-	int globalX();
-	int globalY();
-	ButtonState button();
-	ButtonState state();
+    int x();
+    int y();
+    int globalX();
+    int globalY();
+    ButtonState button();
+    ButtonState state();
 };
 
 class QFocusEvent : public QEvent {};
diff --git a/WebCore/kwq/KWQFont.h b/WebCore/kwq/KWQFont.h
index 77c0823..24dc444 100644
--- a/WebCore/kwq/KWQFont.h
+++ b/WebCore/kwq/KWQFont.h
@@ -30,10 +30,10 @@ class QString;
 
 class QFont {
 public:
-	void setFamily( const QString &);
-	bool operator==(const QFont &x) const;
-	bool operator!=(const QFont &x) const;
-	enum CharSet {};
+    void setFamily( const QString &);
+    bool operator==(const QFont &x) const;
+    bool operator!=(const QFont &x) const;
+    enum CharSet {};
 };
 
 #endif
diff --git a/WebCore/kwq/KWQNamespace.h b/WebCore/kwq/KWQNamespace.h
index 34af2a6..55de268 100644
--- a/WebCore/kwq/KWQNamespace.h
+++ b/WebCore/kwq/KWQNamespace.h
@@ -28,14 +28,14 @@
 
 class Qt {
 public:
-	enum ButtonState {
-		LeftButton,
-		MidButton,
-		RightButton,
-		ControlButton,
-		AltButton,
-		ShiftButton,
-	};
+    enum ButtonState {
+        LeftButton,
+        MidButton,
+        RightButton,
+        ControlButton,
+        AltButton,
+        ShiftButton,
+    };
 };
 
 #endif
diff --git a/WebCore/kwq/KWQPaintDevice.h b/WebCore/kwq/KWQPaintDevice.h
index bc7282f..b988007 100644
--- a/WebCore/kwq/KWQPaintDevice.h
+++ b/WebCore/kwq/KWQPaintDevice.h
@@ -29,7 +29,7 @@
 #include "qrect.h"
 
 class QPaintDevice {
-	friend class QPaintDeviceMetrics;
+    friend class QPaintDeviceMetrics;
 };
 
 #endif
diff --git a/WebCore/kwq/KWQPaintDeviceMetrics.h b/WebCore/kwq/KWQPaintDeviceMetrics.h
index a74abb8..3650453 100644
--- a/WebCore/kwq/KWQPaintDeviceMetrics.h
+++ b/WebCore/kwq/KWQPaintDeviceMetrics.h
@@ -30,8 +30,8 @@ class QPaintDevice;
 
 class QPaintDeviceMetrics {
 public:
-	QPaintDeviceMetrics(const QPaintDevice *);
-	int logicalDpiY() const;
+    QPaintDeviceMetrics(const QPaintDevice *);
+    int logicalDpiY() const;
 };
 
 #endif
diff --git a/WebCore/kwq/KWQPalette.h b/WebCore/kwq/KWQPalette.h
index d0625c0..5e32159 100644
--- a/WebCore/kwq/KWQPalette.h
+++ b/WebCore/kwq/KWQPalette.h
@@ -28,14 +28,14 @@
 
 class QColorGroup {
 public:
-	enum ColorRole {};
-	void setColor(ColorRole role, const QColor &color);
+    enum ColorRole {};
+    void setColor(ColorRole role, const QColor &color);
 };
 
 class QPalette {
 public:
-	enum ColorGroup {};
-	void setColor(ColorGroup, QColorGroup::ColorRole role, const QColor &color);
+    enum ColorGroup {};
+    void setColor(ColorGroup, QColorGroup::ColorRole role, const QColor &color);
 }; 
 
 #endif
diff --git a/WebCore/kwq/KWQPtrStack.h b/WebCore/kwq/KWQPtrStack.h
index e386ae2..38fa256 100644
--- a/WebCore/kwq/KWQPtrStack.h
+++ b/WebCore/kwq/KWQPtrStack.h
@@ -28,9 +28,9 @@
 
 template<class T> class QStack {
 public:
-	bool isEmpty() const;
-	void push(const T *d);
-	T *pop();
+    bool isEmpty() const;
+    void push(const T *d);
+    T *pop();
 };
 
 #endif
diff --git a/WebCore/kwq/KWQRect.h b/WebCore/kwq/KWQRect.h
index 1765ab7..2c92845 100644
--- a/WebCore/kwq/KWQRect.h
+++ b/WebCore/kwq/KWQRect.h
@@ -28,8 +28,8 @@
 
 class QRect {
 public:
-	QRect();
-	QRect(int l, int t, int w, int h);
+    QRect();
+    QRect(int l, int t, int w, int h);
 };
 
 #endif
diff --git a/WebCore/kwq/KWQRegExp.h b/WebCore/kwq/KWQRegExp.h
index 761e15a..a278303 100644
--- a/WebCore/kwq/KWQRegExp.h
+++ b/WebCore/kwq/KWQRegExp.h
@@ -28,8 +28,8 @@
 
 class QRegExp {
 public:
-	QRegExp(const QString &);
-	QRegExp(const QRegExp &);	
+    QRegExp(const QString &);
+    QRegExp(const QRegExp &);    
 };
 
 #endif
diff --git a/WebCore/kwq/KWQScrollView.h b/WebCore/kwq/KWQScrollView.h
index 058ee85..d97ae3d 100644
--- a/WebCore/kwq/KWQScrollView.h
+++ b/WebCore/kwq/KWQScrollView.h
@@ -29,7 +29,7 @@
 #include "qwidget.h"
 
 class QScrollView : public QWidget {
-	typedef int ScrollBarMode;
+    typedef int ScrollBarMode;
 };
 
 #endif
diff --git a/WebCore/kwq/KWQString.h b/WebCore/kwq/KWQString.h
index db3ae02..24b43bd 100644
--- a/WebCore/kwq/KWQString.h
+++ b/WebCore/kwq/KWQString.h
@@ -52,7 +52,7 @@ public:
     friend inline int operator!=(QChar, char);
     operator char() const;
 
-	static const QChar null;
+    static const QChar null;
 
     enum Direction {
         // NOTE: alphabetical order
@@ -70,7 +70,7 @@ public:
     int toInt(bool *) const;
     bool isNull() const;
     const QChar *unicode() const;
-	bool contains(const char *s, bool b) const;
+    bool contains(const char *s, bool b) const;
     uint length() const;
     QString &sprintf(const char *format, ...);
     QString lower() const;
diff --git a/WebCore/kwq/KWQStringList.h b/WebCore/kwq/KWQStringList.h
index 7eed443..147d161 100644
--- a/WebCore/kwq/KWQStringList.h
+++ b/WebCore/kwq/KWQStringList.h
@@ -30,7 +30,7 @@
 #include "qvaluelist.h"
 
 class QStringList : public QValueList<QString> {
-	
+    
 };
 
 #endif
diff --git a/WebCore/kwq/KWQValueList.h b/WebCore/kwq/KWQValueList.h
index fd9eca5..0d602a9 100644
--- a/WebCore/kwq/KWQValueList.h
+++ b/WebCore/kwq/KWQValueList.h
@@ -35,16 +35,16 @@ public:
 
 template <class T> class QValueList {
 public:
-	typedef QValueListIterator<T> Iterator;
-	bool isEmpty() const;
-	void append(const T& x);
-	void remove(const T& x);
-	Iterator remove(Iterator it);
-	const T& first() const;
-	const T& last() const;
-	Iterator begin();
-	Iterator end();
-	T& operator[] (uint i);
+    typedef QValueListIterator<T> Iterator;
+    bool isEmpty() const;
+    void append(const T& x);
+    void remove(const T& x);
+    Iterator remove(Iterator it);
+    const T& first() const;
+    const T& last() const;
+    Iterator begin();
+    Iterator end();
+    T& operator[] (uint i);
 };
 
 #endif
diff --git a/WebCore/kwq/KWQWidget.h b/WebCore/kwq/KWQWidget.h
index b9cba86..3796845 100644
--- a/WebCore/kwq/KWQWidget.h
+++ b/WebCore/kwq/KWQWidget.h
@@ -30,7 +30,7 @@
 
 class QWidget : public QPaintDevice {
 public:
-	int winId() const;
+    int winId() const;
 };
 
 #endif
diff --git a/WebCore/kwq/KWQXml.h b/WebCore/kwq/KWQXml.h
index f7a536e..461493e 100644
--- a/WebCore/kwq/KWQXml.h
+++ b/WebCore/kwq/KWQXml.h
@@ -30,14 +30,14 @@ class QString;
 
 class QXmlAttributes {
 public:
-	QString value(const QString& qName) const;
-	int length() const;
-	QString localName(int index) const;
+    QString value(const QString& qName) const;
+    int length() const;
+    QString localName(int index) const;
 };
 
 class QXmlInputSource {
 public:
-	virtual void setData(const QString& data);
+    virtual void setData(const QString& data);
 };
 
 class QXmlDTDHandler {
@@ -60,8 +60,8 @@ class QXmlDefaultHandler : public QXmlContentHandler, public QXmlLexicalHandler,
 
 class QXmlSimpleReader {
 public:
-	void setContentHandler(QXmlContentHandler* handler);
-	bool parse(const QXmlInputSource& input);
+    void setContentHandler(QXmlContentHandler* handler);
+    bool parse(const QXmlInputSource& input);
     void setLexicalHandler(QXmlLexicalHandler* handler);
     void setDTDHandler(QXmlDTDHandler* handler);
     void setDeclHandler(QXmlDeclHandler* handler);
@@ -70,9 +70,9 @@ public:
 
 class QXmlParseException {
 public:
-	QString message() const;
-	int columnNumber() const;
-	int lineNumber() const;
+    QString message() const;
+    int columnNumber() const;
+    int lineNumber() const;
 };
 
 #endif
diff --git a/WebCore/kwq/qt/qapplication.h b/WebCore/kwq/qt/qapplication.h
index e6ff0ed..f12533f 100644
--- a/WebCore/kwq/qt/qapplication.h
+++ b/WebCore/kwq/qt/qapplication.h
@@ -31,7 +31,7 @@
 
 class QApplication {
 public:
-	static QPalette palette(const QWidget* = 0);
+    static QPalette palette(const QWidget* = 0);
 };
 
 #endif
diff --git a/WebCore/kwq/qt/qcollection.h b/WebCore/kwq/qt/qcollection.h
index 38cd0a4..2d45385 100644
--- a/WebCore/kwq/qt/qcollection.h
+++ b/WebCore/kwq/qt/qcollection.h
@@ -28,9 +28,9 @@
 
 class QCollection {
 public:
-	typedef void *Item;
+    typedef void *Item;
 protected:
-	virtual Item newItem(Item);
+    virtual Item newItem(Item);
 };
 
 #endif
diff --git a/WebCore/kwq/qt/qdatastream.h b/WebCore/kwq/qt/qdatastream.h
index 831fc4a..ba4ff56 100644
--- a/WebCore/kwq/qt/qdatastream.h
+++ b/WebCore/kwq/qt/qdatastream.h
@@ -31,13 +31,13 @@
 
 class QDataStream {
 public:
-	QDataStream( QByteArray, int mode );
-	virtual ~QDataStream();
+    QDataStream( QByteArray, int mode );
+    virtual ~QDataStream();
 
-	QDataStream &operator<<( const char *str );
-	QDataStream &operator<<( const QString &str );
-	QDataStream &operator<<( const QCString &str );
-	QDataStream &operator>>( const QString &str );
+    QDataStream &operator<<( const char *str );
+    QDataStream &operator<<( const QString &str );
+    QDataStream &operator<<( const QCString &str );
+    QDataStream &operator>>( const QString &str );
 };
 
 #endif
diff --git a/WebCore/kwq/qt/qdatetime.h b/WebCore/kwq/qt/qdatetime.h
index 85028b1..c670a7c 100644
--- a/WebCore/kwq/qt/qdatetime.h
+++ b/WebCore/kwq/qt/qdatetime.h
@@ -28,28 +28,28 @@
 
 class QTime {
 public:
-	QTime();
-	QTime(int h, int m);
-	QTime(const QTime &other);
+    QTime();
+    QTime(int h, int m);
+    QTime(const QTime &other);
 
-	void start();
-	int msec() const;
+    void start();
+    int msec() const;
 };
 
 class QDate {
 public:
-	QDate(int y, int m, int d);
+    QDate(int y, int m, int d);
 };
 
 class QDateTime {
 public:
-	QDateTime();
-	QDateTime(QDate date, QTime time);
+    QDateTime();
+    QDateTime(QDate date, QTime time);
 
-	static QDateTime currentDateTime();
+    static QDateTime currentDateTime();
 
-	int secsTo(const QDateTime &) const;
-	QTime time() const;
+    int secsTo(const QDateTime &) const;
+    QTime time() const;
 };
 
 #endif
diff --git a/WebCore/kwq/qt/qevent.h b/WebCore/kwq/qt/qevent.h
index 24dea55..2a2099f 100644
--- a/WebCore/kwq/qt/qevent.h
+++ b/WebCore/kwq/qt/qevent.h
@@ -31,23 +31,23 @@
 
 class QEvent : public Qt {
 public:
-	enum Type {
-		MouseButtonPress,
-		MouseButtonRelease,
-		MouseButtonDblClick,
-		MouseMove,
-	};
-	Type type() const;
+    enum Type {
+        MouseButtonPress,
+        MouseButtonRelease,
+        MouseButtonDblClick,
+        MouseMove,
+    };
+    Type type() const;
 };
 
 class QMouseEvent : public QEvent {
 public:
-	int x();
-	int y();
-	int globalX();
-	int globalY();
-	ButtonState button();
-	ButtonState state();
+    int x();
+    int y();
+    int globalX();
+    int globalY();
+    ButtonState button();
+    ButtonState state();
 };
 
 class QFocusEvent : public QEvent {};
diff --git a/WebCore/kwq/qt/qfont.h b/WebCore/kwq/qt/qfont.h
index 77c0823..24dc444 100644
--- a/WebCore/kwq/qt/qfont.h
+++ b/WebCore/kwq/qt/qfont.h
@@ -30,10 +30,10 @@ class QString;
 
 class QFont {
 public:
-	void setFamily( const QString &);
-	bool operator==(const QFont &x) const;
-	bool operator!=(const QFont &x) const;
-	enum CharSet {};
+    void setFamily( const QString &);
+    bool operator==(const QFont &x) const;
+    bool operator!=(const QFont &x) const;
+    enum CharSet {};
 };
 
 #endif
diff --git a/WebCore/kwq/qt/qnamespace.h b/WebCore/kwq/qt/qnamespace.h
index 34af2a6..55de268 100644
--- a/WebCore/kwq/qt/qnamespace.h
+++ b/WebCore/kwq/qt/qnamespace.h
@@ -28,14 +28,14 @@
 
 class Qt {
 public:
-	enum ButtonState {
-		LeftButton,
-		MidButton,
-		RightButton,
-		ControlButton,
-		AltButton,
-		ShiftButton,
-	};
+    enum ButtonState {
+        LeftButton,
+        MidButton,
+        RightButton,
+        ControlButton,
+        AltButton,
+        ShiftButton,
+    };
 };
 
 #endif
diff --git a/WebCore/kwq/qt/qpaintdevice.h b/WebCore/kwq/qt/qpaintdevice.h
index bc7282f..b988007 100644
--- a/WebCore/kwq/qt/qpaintdevice.h
+++ b/WebCore/kwq/qt/qpaintdevice.h
@@ -29,7 +29,7 @@
 #include "qrect.h"
 
 class QPaintDevice {
-	friend class QPaintDeviceMetrics;
+    friend class QPaintDeviceMetrics;
 };
 
 #endif
diff --git a/WebCore/kwq/qt/qpaintdevicemetrics.h b/WebCore/kwq/qt/qpaintdevicemetrics.h
index a74abb8..3650453 100644
--- a/WebCore/kwq/qt/qpaintdevicemetrics.h
+++ b/WebCore/kwq/qt/qpaintdevicemetrics.h
@@ -30,8 +30,8 @@ class QPaintDevice;
 
 class QPaintDeviceMetrics {
 public:
-	QPaintDeviceMetrics(const QPaintDevice *);
-	int logicalDpiY() const;
+    QPaintDeviceMetrics(const QPaintDevice *);
+    int logicalDpiY() const;
 };
 
 #endif
diff --git a/WebCore/kwq/qt/qpalette.h b/WebCore/kwq/qt/qpalette.h
index d0625c0..5e32159 100644
--- a/WebCore/kwq/qt/qpalette.h
+++ b/WebCore/kwq/qt/qpalette.h
@@ -28,14 +28,14 @@
 
 class QColorGroup {
 public:
-	enum ColorRole {};
-	void setColor(ColorRole role, const QColor &color);
+    enum ColorRole {};
+    void setColor(ColorRole role, const QColor &color);
 };
 
 class QPalette {
 public:
-	enum ColorGroup {};
-	void setColor(ColorGroup, QColorGroup::ColorRole role, const QColor &color);
+    enum ColorGroup {};
+    void setColor(ColorGroup, QColorGroup::ColorRole role, const QColor &color);
 }; 
 
 #endif
diff --git a/WebCore/kwq/qt/qrect.h b/WebCore/kwq/qt/qrect.h
index 1765ab7..2c92845 100644
--- a/WebCore/kwq/qt/qrect.h
+++ b/WebCore/kwq/qt/qrect.h
@@ -28,8 +28,8 @@
 
 class QRect {
 public:
-	QRect();
-	QRect(int l, int t, int w, int h);
+    QRect();
+    QRect(int l, int t, int w, int h);
 };
 
 #endif
diff --git a/WebCore/kwq/qt/qregexp.h b/WebCore/kwq/qt/qregexp.h
index 761e15a..a278303 100644
--- a/WebCore/kwq/qt/qregexp.h
+++ b/WebCore/kwq/qt/qregexp.h
@@ -28,8 +28,8 @@
 
 class QRegExp {
 public:
-	QRegExp(const QString &);
-	QRegExp(const QRegExp &);	
+    QRegExp(const QString &);
+    QRegExp(const QRegExp &);    
 };
 
 #endif
diff --git a/WebCore/kwq/qt/qscrollview.h b/WebCore/kwq/qt/qscrollview.h
index 058ee85..d97ae3d 100644
--- a/WebCore/kwq/qt/qscrollview.h
+++ b/WebCore/kwq/qt/qscrollview.h
@@ -29,7 +29,7 @@
 #include "qwidget.h"
 
 class QScrollView : public QWidget {
-	typedef int ScrollBarMode;
+    typedef int ScrollBarMode;
 };
 
 #endif
diff --git a/WebCore/kwq/qt/qstack.h b/WebCore/kwq/qt/qstack.h
index e386ae2..38fa256 100644
--- a/WebCore/kwq/qt/qstack.h
+++ b/WebCore/kwq/qt/qstack.h
@@ -28,9 +28,9 @@
 
 template<class T> class QStack {
 public:
-	bool isEmpty() const;
-	void push(const T *d);
-	T *pop();
+    bool isEmpty() const;
+    void push(const T *d);
+    T *pop();
 };
 
 #endif
diff --git a/WebCore/kwq/qt/qstring.h b/WebCore/kwq/qt/qstring.h
index db3ae02..24b43bd 100644
--- a/WebCore/kwq/qt/qstring.h
+++ b/WebCore/kwq/qt/qstring.h
@@ -52,7 +52,7 @@ public:
     friend inline int operator!=(QChar, char);
     operator char() const;
 
-	static const QChar null;
+    static const QChar null;
 
     enum Direction {
         // NOTE: alphabetical order
@@ -70,7 +70,7 @@ public:
     int toInt(bool *) const;
     bool isNull() const;
     const QChar *unicode() const;
-	bool contains(const char *s, bool b) const;
+    bool contains(const char *s, bool b) const;
     uint length() const;
     QString &sprintf(const char *format, ...);
     QString lower() const;
diff --git a/WebCore/kwq/qt/qstringlist.h b/WebCore/kwq/qt/qstringlist.h
index 7eed443..147d161 100644
--- a/WebCore/kwq/qt/qstringlist.h
+++ b/WebCore/kwq/qt/qstringlist.h
@@ -30,7 +30,7 @@
 #include "qvaluelist.h"
 
 class QStringList : public QValueList<QString> {
-	
+    
 };
 
 #endif
diff --git a/WebCore/kwq/qt/qvaluelist.h b/WebCore/kwq/qt/qvaluelist.h
index fd9eca5..0d602a9 100644
--- a/WebCore/kwq/qt/qvaluelist.h
+++ b/WebCore/kwq/qt/qvaluelist.h
@@ -35,16 +35,16 @@ public:
 
 template <class T> class QValueList {
 public:
-	typedef QValueListIterator<T> Iterator;
-	bool isEmpty() const;
-	void append(const T& x);
-	void remove(const T& x);
-	Iterator remove(Iterator it);
-	const T& first() const;
-	const T& last() const;
-	Iterator begin();
-	Iterator end();
-	T& operator[] (uint i);
+    typedef QValueListIterator<T> Iterator;
+    bool isEmpty() const;
+    void append(const T& x);
+    void remove(const T& x);
+    Iterator remove(Iterator it);
+    const T& first() const;
+    const T& last() const;
+    Iterator begin();
+    Iterator end();
+    T& operator[] (uint i);
 };
 
 #endif
diff --git a/WebCore/kwq/qt/qwidget.h b/WebCore/kwq/qt/qwidget.h
index b9cba86..3796845 100644
--- a/WebCore/kwq/qt/qwidget.h
+++ b/WebCore/kwq/qt/qwidget.h
@@ -30,7 +30,7 @@
 
 class QWidget : public QPaintDevice {
 public:
-	int winId() const;
+    int winId() const;
 };
 
 #endif
diff --git a/WebCore/kwq/qt/qxml.h b/WebCore/kwq/qt/qxml.h
index f7a536e..461493e 100644
--- a/WebCore/kwq/qt/qxml.h
+++ b/WebCore/kwq/qt/qxml.h
@@ -30,14 +30,14 @@ class QString;
 
 class QXmlAttributes {
 public:
-	QString value(const QString& qName) const;
-	int length() const;
-	QString localName(int index) const;
+    QString value(const QString& qName) const;
+    int length() const;
+    QString localName(int index) const;
 };
 
 class QXmlInputSource {
 public:
-	virtual void setData(const QString& data);
+    virtual void setData(const QString& data);
 };
 
 class QXmlDTDHandler {
@@ -60,8 +60,8 @@ class QXmlDefaultHandler : public QXmlContentHandler, public QXmlLexicalHandler,
 
 class QXmlSimpleReader {
 public:
-	void setContentHandler(QXmlContentHandler* handler);
-	bool parse(const QXmlInputSource& input);
+    void setContentHandler(QXmlContentHandler* handler);
+    bool parse(const QXmlInputSource& input);
     void setLexicalHandler(QXmlLexicalHandler* handler);
     void setDTDHandler(QXmlDTDHandler* handler);
     void setDeclHandler(QXmlDeclHandler* handler);
@@ -70,9 +70,9 @@ public:
 
 class QXmlParseException {
 public:
-	QString message() const;
-	int columnNumber() const;
-	int lineNumber() const;
+    QString message() const;
+    int columnNumber() const;
+    int lineNumber() const;
 };
 
 #endif
diff --git a/WebCore/src/kwq/qt/qapplication.h b/WebCore/src/kwq/qt/qapplication.h
index e6ff0ed..f12533f 100644
--- a/WebCore/src/kwq/qt/qapplication.h
+++ b/WebCore/src/kwq/qt/qapplication.h
@@ -31,7 +31,7 @@
 
 class QApplication {
 public:
-	static QPalette palette(const QWidget* = 0);
+    static QPalette palette(const QWidget* = 0);
 };
 
 #endif
diff --git a/WebCore/src/kwq/qt/qcollection.h b/WebCore/src/kwq/qt/qcollection.h
index 38cd0a4..2d45385 100644
--- a/WebCore/src/kwq/qt/qcollection.h
+++ b/WebCore/src/kwq/qt/qcollection.h
@@ -28,9 +28,9 @@
 
 class QCollection {
 public:
-	typedef void *Item;
+    typedef void *Item;
 protected:
-	virtual Item newItem(Item);
+    virtual Item newItem(Item);
 };
 
 #endif
diff --git a/WebCore/src/kwq/qt/qdatastream.h b/WebCore/src/kwq/qt/qdatastream.h
index 831fc4a..ba4ff56 100644
--- a/WebCore/src/kwq/qt/qdatastream.h
+++ b/WebCore/src/kwq/qt/qdatastream.h
@@ -31,13 +31,13 @@
 
 class QDataStream {
 public:
-	QDataStream( QByteArray, int mode );
-	virtual ~QDataStream();
+    QDataStream( QByteArray, int mode );
+    virtual ~QDataStream();
 
-	QDataStream &operator<<( const char *str );
-	QDataStream &operator<<( const QString &str );
-	QDataStream &operator<<( const QCString &str );
-	QDataStream &operator>>( const QString &str );
+    QDataStream &operator<<( const char *str );
+    QDataStream &operator<<( const QString &str );
+    QDataStream &operator<<( const QCString &str );
+    QDataStream &operator>>( const QString &str );
 };
 
 #endif
diff --git a/WebCore/src/kwq/qt/qdatetime.h b/WebCore/src/kwq/qt/qdatetime.h
index 85028b1..c670a7c 100644
--- a/WebCore/src/kwq/qt/qdatetime.h
+++ b/WebCore/src/kwq/qt/qdatetime.h
@@ -28,28 +28,28 @@
 
 class QTime {
 public:
-	QTime();
-	QTime(int h, int m);
-	QTime(const QTime &other);
+    QTime();
+    QTime(int h, int m);
+    QTime(const QTime &other);
 
-	void start();
-	int msec() const;
+    void start();
+    int msec() const;
 };
 
 class QDate {
 public:
-	QDate(int y, int m, int d);
+    QDate(int y, int m, int d);
 };
 
 class QDateTime {
 public:
-	QDateTime();
-	QDateTime(QDate date, QTime time);
+    QDateTime();
+    QDateTime(QDate date, QTime time);
 
-	static QDateTime currentDateTime();
+    static QDateTime currentDateTime();
 
-	int secsTo(const QDateTime &) const;
-	QTime time() const;
+    int secsTo(const QDateTime &) const;
+    QTime time() const;
 };
 
 #endif
diff --git a/WebCore/src/kwq/qt/qevent.h b/WebCore/src/kwq/qt/qevent.h
index 24dea55..2a2099f 100644
--- a/WebCore/src/kwq/qt/qevent.h
+++ b/WebCore/src/kwq/qt/qevent.h
@@ -31,23 +31,23 @@
 
 class QEvent : public Qt {
 public:
-	enum Type {
-		MouseButtonPress,
-		MouseButtonRelease,
-		MouseButtonDblClick,
-		MouseMove,
-	};
-	Type type() const;
+    enum Type {
+        MouseButtonPress,
+        MouseButtonRelease,
+        MouseButtonDblClick,
+        MouseMove,
+    };
+    Type type() const;
 };
 
 class QMouseEvent : public QEvent {
 public:
-	int x();
-	int y();
-	int globalX();
-	int globalY();
-	ButtonState button();
-	ButtonState state();
+    int x();
+    int y();
+    int globalX();
+    int globalY();
+    ButtonState button();
+    ButtonState state();
 };
 
 class QFocusEvent : public QEvent {};
diff --git a/WebCore/src/kwq/qt/qfont.h b/WebCore/src/kwq/qt/qfont.h
index 77c0823..24dc444 100644
--- a/WebCore/src/kwq/qt/qfont.h
+++ b/WebCore/src/kwq/qt/qfont.h
@@ -30,10 +30,10 @@ class QString;
 
 class QFont {
 public:
-	void setFamily( const QString &);
-	bool operator==(const QFont &x) const;
-	bool operator!=(const QFont &x) const;
-	enum CharSet {};
+    void setFamily( const QString &);
+    bool operator==(const QFont &x) const;
+    bool operator!=(const QFont &x) const;
+    enum CharSet {};
 };
 
 #endif
diff --git a/WebCore/src/kwq/qt/qnamespace.h b/WebCore/src/kwq/qt/qnamespace.h
index 34af2a6..55de268 100644
--- a/WebCore/src/kwq/qt/qnamespace.h
+++ b/WebCore/src/kwq/qt/qnamespace.h
@@ -28,14 +28,14 @@
 
 class Qt {
 public:
-	enum ButtonState {
-		LeftButton,
-		MidButton,
-		RightButton,
-		ControlButton,
-		AltButton,
-		ShiftButton,
-	};
+    enum ButtonState {
+        LeftButton,
+        MidButton,
+        RightButton,
+        ControlButton,
+        AltButton,
+        ShiftButton,
+    };
 };
 
 #endif
diff --git a/WebCore/src/kwq/qt/qpaintdevice.h b/WebCore/src/kwq/qt/qpaintdevice.h
index bc7282f..b988007 100644
--- a/WebCore/src/kwq/qt/qpaintdevice.h
+++ b/WebCore/src/kwq/qt/qpaintdevice.h
@@ -29,7 +29,7 @@
 #include "qrect.h"
 
 class QPaintDevice {
-	friend class QPaintDeviceMetrics;
+    friend class QPaintDeviceMetrics;
 };
 
 #endif
diff --git a/WebCore/src/kwq/qt/qpaintdevicemetrics.h b/WebCore/src/kwq/qt/qpaintdevicemetrics.h
index a74abb8..3650453 100644
--- a/WebCore/src/kwq/qt/qpaintdevicemetrics.h
+++ b/WebCore/src/kwq/qt/qpaintdevicemetrics.h
@@ -30,8 +30,8 @@ class QPaintDevice;
 
 class QPaintDeviceMetrics {
 public:
-	QPaintDeviceMetrics(const QPaintDevice *);
-	int logicalDpiY() const;
+    QPaintDeviceMetrics(const QPaintDevice *);
+    int logicalDpiY() const;
 };
 
 #endif
diff --git a/WebCore/src/kwq/qt/qpalette.h b/WebCore/src/kwq/qt/qpalette.h
index d0625c0..5e32159 100644
--- a/WebCore/src/kwq/qt/qpalette.h
+++ b/WebCore/src/kwq/qt/qpalette.h
@@ -28,14 +28,14 @@
 
 class QColorGroup {
 public:
-	enum ColorRole {};
-	void setColor(ColorRole role, const QColor &color);
+    enum ColorRole {};
+    void setColor(ColorRole role, const QColor &color);
 };
 
 class QPalette {
 public:
-	enum ColorGroup {};
-	void setColor(ColorGroup, QColorGroup::ColorRole role, const QColor &color);
+    enum ColorGroup {};
+    void setColor(ColorGroup, QColorGroup::ColorRole role, const QColor &color);
 }; 
 
 #endif
diff --git a/WebCore/src/kwq/qt/qrect.h b/WebCore/src/kwq/qt/qrect.h
index 1765ab7..2c92845 100644
--- a/WebCore/src/kwq/qt/qrect.h
+++ b/WebCore/src/kwq/qt/qrect.h
@@ -28,8 +28,8 @@
 
 class QRect {
 public:
-	QRect();
-	QRect(int l, int t, int w, int h);
+    QRect();
+    QRect(int l, int t, int w, int h);
 };
 
 #endif
diff --git a/WebCore/src/kwq/qt/qregexp.h b/WebCore/src/kwq/qt/qregexp.h
index 761e15a..a278303 100644
--- a/WebCore/src/kwq/qt/qregexp.h
+++ b/WebCore/src/kwq/qt/qregexp.h
@@ -28,8 +28,8 @@
 
 class QRegExp {
 public:
-	QRegExp(const QString &);
-	QRegExp(const QRegExp &);	
+    QRegExp(const QString &);
+    QRegExp(const QRegExp &);    
 };
 
 #endif
diff --git a/WebCore/src/kwq/qt/qscrollview.h b/WebCore/src/kwq/qt/qscrollview.h
index 058ee85..d97ae3d 100644
--- a/WebCore/src/kwq/qt/qscrollview.h
+++ b/WebCore/src/kwq/qt/qscrollview.h
@@ -29,7 +29,7 @@
 #include "qwidget.h"
 
 class QScrollView : public QWidget {
-	typedef int ScrollBarMode;
+    typedef int ScrollBarMode;
 };
 
 #endif
diff --git a/WebCore/src/kwq/qt/qstack.h b/WebCore/src/kwq/qt/qstack.h
index e386ae2..38fa256 100644
--- a/WebCore/src/kwq/qt/qstack.h
+++ b/WebCore/src/kwq/qt/qstack.h
@@ -28,9 +28,9 @@
 
 template<class T> class QStack {
 public:
-	bool isEmpty() const;
-	void push(const T *d);
-	T *pop();
+    bool isEmpty() const;
+    void push(const T *d);
+    T *pop();
 };
 
 #endif
diff --git a/WebCore/src/kwq/qt/qstring.h b/WebCore/src/kwq/qt/qstring.h
index db3ae02..24b43bd 100644
--- a/WebCore/src/kwq/qt/qstring.h
+++ b/WebCore/src/kwq/qt/qstring.h
@@ -52,7 +52,7 @@ public:
     friend inline int operator!=(QChar, char);
     operator char() const;
 
-	static const QChar null;
+    static const QChar null;
 
     enum Direction {
         // NOTE: alphabetical order
@@ -70,7 +70,7 @@ public:
     int toInt(bool *) const;
     bool isNull() const;
     const QChar *unicode() const;
-	bool contains(const char *s, bool b) const;
+    bool contains(const char *s, bool b) const;
     uint length() const;
     QString &sprintf(const char *format, ...);
     QString lower() const;
diff --git a/WebCore/src/kwq/qt/qstringlist.h b/WebCore/src/kwq/qt/qstringlist.h
index 7eed443..147d161 100644
--- a/WebCore/src/kwq/qt/qstringlist.h
+++ b/WebCore/src/kwq/qt/qstringlist.h
@@ -30,7 +30,7 @@
 #include "qvaluelist.h"
 
 class QStringList : public QValueList<QString> {
-	
+    
 };
 
 #endif
diff --git a/WebCore/src/kwq/qt/qvaluelist.h b/WebCore/src/kwq/qt/qvaluelist.h
index fd9eca5..0d602a9 100644
--- a/WebCore/src/kwq/qt/qvaluelist.h
+++ b/WebCore/src/kwq/qt/qvaluelist.h
@@ -35,16 +35,16 @@ public:
 
 template <class T> class QValueList {
 public:
-	typedef QValueListIterator<T> Iterator;
-	bool isEmpty() const;
-	void append(const T& x);
-	void remove(const T& x);
-	Iterator remove(Iterator it);
-	const T& first() const;
-	const T& last() const;
-	Iterator begin();
-	Iterator end();
-	T& operator[] (uint i);
+    typedef QValueListIterator<T> Iterator;
+    bool isEmpty() const;
+    void append(const T& x);
+    void remove(const T& x);
+    Iterator remove(Iterator it);
+    const T& first() const;
+    const T& last() const;
+    Iterator begin();
+    Iterator end();
+    T& operator[] (uint i);
 };
 
 #endif
diff --git a/WebCore/src/kwq/qt/qwidget.h b/WebCore/src/kwq/qt/qwidget.h
index b9cba86..3796845 100644
--- a/WebCore/src/kwq/qt/qwidget.h
+++ b/WebCore/src/kwq/qt/qwidget.h
@@ -30,7 +30,7 @@
 
 class QWidget : public QPaintDevice {
 public:
-	int winId() const;
+    int winId() const;
 };
 
 #endif
diff --git a/WebCore/src/kwq/qt/qxml.h b/WebCore/src/kwq/qt/qxml.h
index f7a536e..461493e 100644
--- a/WebCore/src/kwq/qt/qxml.h
+++ b/WebCore/src/kwq/qt/qxml.h
@@ -30,14 +30,14 @@ class QString;
 
 class QXmlAttributes {
 public:
-	QString value(const QString& qName) const;
-	int length() const;
-	QString localName(int index) const;
+    QString value(const QString& qName) const;
+    int length() const;
+    QString localName(int index) const;
 };
 
 class QXmlInputSource {
 public:
-	virtual void setData(const QString& data);
+    virtual void setData(const QString& data);
 };
 
 class QXmlDTDHandler {
@@ -60,8 +60,8 @@ class QXmlDefaultHandler : public QXmlContentHandler, public QXmlLexicalHandler,
 
 class QXmlSimpleReader {
 public:
-	void setContentHandler(QXmlContentHandler* handler);
-	bool parse(const QXmlInputSource& input);
+    void setContentHandler(QXmlContentHandler* handler);
+    bool parse(const QXmlInputSource& input);
     void setLexicalHandler(QXmlLexicalHandler* handler);
     void setDTDHandler(QXmlDTDHandler* handler);
     void setDeclHandler(QXmlDeclHandler* handler);
@@ -70,9 +70,9 @@ public:
 
 class QXmlParseException {
 public:
-	QString message() const;
-	int columnNumber() const;
-	int lineNumber() const;
+    QString message() const;
+    int columnNumber() const;
+    int lineNumber() const;
 };
 
 #endif

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list