summaryrefslogtreecommitdiffstats
path: root/konquest/gamecore.h
diff options
context:
space:
mode:
Diffstat (limited to 'konquest/gamecore.h')
-rw-r--r--konquest/gamecore.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/konquest/gamecore.h b/konquest/gamecore.h
index 80dab502..edbd4210 100644
--- a/konquest/gamecore.h
+++ b/konquest/gamecore.h
@@ -185,9 +185,9 @@ private:
public:
virtual ~Planet();
- static Planet *createPlayerPlanet( Sector &tqparentSector,
+ static Planet *createPlayerPlanet( Sector &parentSector,
Player *initialOwner, TQString planetName );
- static Planet *createNeutralPlanet( Sector &tqparentSector,
+ static Planet *createNeutralPlanet( Sector &parentSector,
Player *initialOwner, TQString planetName );
Sector &getSector() const;
@@ -214,7 +214,7 @@ signals:
private:
TQString name;
Player *owner;
- Sector &tqparentSector;
+ Sector &parentSector;
DefenseFleet homeFleet;
double killPercentage;
@@ -235,7 +235,7 @@ public:
// constructors
Sector();
- Sector( Map *tqparentMap, int xpos, int ypos );
+ Sector( Map *parentMap, int xpos, int ypos );
Sector( const Sector & );
// assignment operator (makes initialization easy)
@@ -261,7 +261,7 @@ protected slots:
protected:
Planet *planet; // a sector has 0 or 1 planets
- Map *tqparentMap;
+ Map *parentMap;
int x, y;
};