QTfrontend/hats.h
changeset 2948 3f21a9dc93d0
parent 1239 4901abe4c3b0
child 3236 4ab3917d7d44
--- a/QTfrontend/hats.h	Sat Mar 06 10:54:24 2010 +0000
+++ b/QTfrontend/hats.h	Sat Mar 06 10:59:20 2010 +0000
@@ -27,18 +27,18 @@
 
 class HatsModel : public QAbstractListModel
 {
-	Q_OBJECT
+    Q_OBJECT
 
 public:
-	HatsModel(QObject *parent = 0);
+    HatsModel(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;
 
-	QVariant data(const QModelIndex &index, int role) const;
+    QVariant data(const QModelIndex &index, int role) const;
 protected:
-	QVector<QPair<QString, QIcon> > hats;
+    QVector<QPair<QString, QIcon> > hats;
 };
 
 #endif // _HATS_INCLUDED