PEGASUS: Remove some useless const modifiers

Thanks to digitall for spotting
This commit is contained in:
Matthew Hoops 2012-04-02 19:58:50 -04:00
parent 851c010feb
commit 73f2244a56
8 changed files with 8 additions and 8 deletions

View File

@ -53,7 +53,7 @@ public:
DoorTable() {}
~DoorTable() {}
static const uint32 getResTag() { return MKTAG('D', 'o', 'o', 'r'); }
static uint32 getResTag() { return MKTAG('D', 'o', 'o', 'r'); }
void loadFromStream(Common::SeekableReadStream *stream);
void clear();

View File

@ -42,7 +42,7 @@ public:
ExitTable() {}
~ExitTable() {}
static const uint32 getResTag() { return MKTAG('E', 'x', 'i', 't'); }
static uint32 getResTag() { return MKTAG('E', 'x', 'i', 't'); }
void loadFromStream(Common::SeekableReadStream *stream);
void clear();

View File

@ -42,7 +42,7 @@ public:
ExtraTable() {}
~ExtraTable() {}
static const uint32 getResTag() { return MKTAG('X', 't', 'r', 'a'); }
static uint32 getResTag() { return MKTAG('X', 't', 'r', 'a'); }
void loadFromStream(Common::SeekableReadStream *stream);
void clear();

View File

@ -42,7 +42,7 @@ public:
HotspotInfoTable() {}
~HotspotInfoTable() {}
static const uint32 getResTag() { return MKTAG('H', 'S', 'I', 'n'); }
static uint32 getResTag() { return MKTAG('H', 'S', 'I', 'n'); }
void loadFromStream(Common::SeekableReadStream *stream);
void clear();

View File

@ -59,7 +59,7 @@ public:
SpotTable() {}
~SpotTable() {}
static const uint32 getResTag() { return MKTAG('S', 'p', 'o', 't'); }
static uint32 getResTag() { return MKTAG('S', 'p', 'o', 't'); }
void loadFromStream(Common::SeekableReadStream *stream);
void clear();

View File

@ -42,7 +42,7 @@ public:
TurnTable() {}
~TurnTable() {}
static const uint32 getResTag() { return MKTAG('T', 'u', 'r', 'n'); }
static uint32 getResTag() { return MKTAG('T', 'u', 'r', 'n'); }
void loadFromStream(Common::SeekableReadStream *stream);
void clear();

View File

@ -42,7 +42,7 @@ public:
ViewTable() {}
~ViewTable() {}
static const uint32 getResTag() { return MKTAG('V', 'i', 'e', 'w'); }
static uint32 getResTag() { return MKTAG('V', 'i', 'e', 'w'); }
void loadFromStream(Common::SeekableReadStream *stream);
void clear();

View File

@ -42,7 +42,7 @@ public:
ZoomTable() {}
~ZoomTable() {}
static const uint32 getResTag() { return MKTAG('Z', 'o', 'o', 'm'); }
static uint32 getResTag() { return MKTAG('Z', 'o', 'o', 'm'); }
void loadFromStream(Common::SeekableReadStream *stream);
void clear();