QTfrontend/team.h
changeset 6225 505643d4c23d
parent 6223 cc3eb9b7230f
child 6616 f77bb02b669f
--- a/QTfrontend/team.h	Fri Oct 28 19:20:35 2011 +0400
+++ b/QTfrontend/team.h	Sat Oct 29 09:19:04 2011 +0200
@@ -44,7 +44,7 @@
 // class representing a team
 class HWTeam : public QObject
 {
-	Q_OBJECT
+    Q_OBJECT
 
     public:
 
@@ -52,7 +52,7 @@
         HWTeam(const QString & teamname);
         HWTeam(const QStringList& strLst);
         HWTeam();
-		HWTeam(const HWTeam & other);
+        HWTeam(const HWTeam & other);
 
         // file operations
         static HWTeam loadFromFile(const QString & teamName);
@@ -96,9 +96,9 @@
         QStringList teamGameConfig(quint32 InitHealth) const;
 
         // comparison operators
-		bool operator == (const HWTeam& t1) const;
-		bool operator < (const HWTeam& t1) const;
-		HWTeam & operator = (const HWTeam & other);
+        bool operator == (const HWTeam& t1) const;
+        bool operator < (const HWTeam& t1) const;
+        HWTeam & operator = (const HWTeam & other);
 
 
     private:
@@ -112,11 +112,11 @@
         QString m_flag;
         QString m_voicepack;
         HWHog m_hedgehogs[HEDGEHOGS_PER_TEAM];
-		quint8 m_difficulty;
+        quint8 m_difficulty;
         BindAction m_binds[BINDS_NUMBER];
 
         // class members that contain info for the current game setup
-		quint8 m_numHedgehogs;
+        quint8 m_numHedgehogs;
         QColor m_color;
         bool m_isNetTeam;
         QString m_owner;