QTfrontend/netserverslist.h
changeset 2948 3f21a9dc93d0
parent 1066 1f1b3686a2b0
child 3236 4ab3917d7d44
--- a/QTfrontend/netserverslist.h	Sat Mar 06 10:54:24 2010 +0000
+++ b/QTfrontend/netserverslist.h	Sat Mar 06 10:59:20 2010 +0000
@@ -24,20 +24,20 @@
 
 class HWNetServersModel : public QAbstractTableModel
 {
-	Q_OBJECT
+    Q_OBJECT
 
 public:
-	HWNetServersModel(QObject *parent = 0);
+    HWNetServersModel(QObject *parent = 0);
 
-	QVariant headerData(int section, Qt::Orientation orientation, int role) const;
-	int rowCount(const QModelIndex & parent) const;
-	int columnCount(const QModelIndex & parent) const;
+    QVariant headerData(int section, Qt::Orientation orientation, int role) const;
+    int rowCount(const QModelIndex & parent) const;
+    int columnCount(const QModelIndex & parent) const;
 
 public slots:
-	virtual void updateList();
+    virtual void updateList();
 
 protected:
-	QList<QStringList> games;
+    QList<QStringList> games;
 };
 
 #endif // _NET_SERVERSLIST_INCLUDED