diff options
author | Tarek Soliman | 2012-02-15 00:06:13 -0600 |
---|---|---|
committer | Tarek Soliman | 2012-02-15 10:07:08 -0600 |
commit | 921f602ab8631a9d10e0a173b6b331dbafda564a (patch) | |
tree | bc80e4591e080719e16ac359c15bf5da87291c19 /common | |
parent | dbcd177606818f3b50a4b4700d9789bd0dea862c (diff) | |
download | scummvm-rg350-921f602ab8631a9d10e0a173b6b331dbafda564a.tar.gz scummvm-rg350-921f602ab8631a9d10e0a173b6b331dbafda564a.tar.bz2 scummvm-rg350-921f602ab8631a9d10e0a173b6b331dbafda564a.zip |
JANITORIAL: Fix whitespace in pointer template arg
Diffstat (limited to 'common')
-rw-r--r-- | common/huffman.h | 2 | ||||
-rw-r--r-- | common/list.h | 2 | ||||
-rw-r--r-- | common/quicktime.h | 4 | ||||
-rw-r--r-- | common/xmlparser.cpp | 2 | ||||
-rw-r--r-- | common/xmlparser.h | 6 |
5 files changed, 8 insertions, 8 deletions
diff --git a/common/huffman.h b/common/huffman.h index 4175d0d309..3b23340b2e 100644 --- a/common/huffman.h +++ b/common/huffman.h @@ -68,7 +68,7 @@ private: typedef List<Symbol> CodeList; typedef Array<CodeList> CodeLists; - typedef Array<Symbol*> SymbolList; + typedef Array<Symbol *> SymbolList; /** Lists of codes and their symbols, sorted by code length. */ CodeLists _codes; diff --git a/common/list.h b/common/list.h index a1e761f55d..044b9d7a49 100644 --- a/common/list.h +++ b/common/list.h @@ -226,7 +226,7 @@ public: } const_iterator end() const { - return const_iterator(const_cast<NodeBase*>(&_anchor)); + return const_iterator(const_cast<NodeBase *>(&_anchor)); } protected: diff --git a/common/quicktime.h b/common/quicktime.h index d7e2691c2b..efd2adbd21 100644 --- a/common/quicktime.h +++ b/common/quicktime.h @@ -155,7 +155,7 @@ protected: uint16 height; CodecType codecType; - Array<SampleDesc*> sampleDescs; + Array<SampleDesc *> sampleDescs; uint32 editCount; EditListEntry *editList; @@ -180,7 +180,7 @@ protected: uint32 _duration; Rational _scaleFactorX; Rational _scaleFactorY; - Array<Track*> _tracks; + Array<Track *> _tracks; uint32 _beginOffset; MacResManager *_resFork; diff --git a/common/xmlparser.cpp b/common/xmlparser.cpp index f768e44382..1181b399cc 100644 --- a/common/xmlparser.cpp +++ b/common/xmlparser.cpp @@ -39,7 +39,7 @@ XMLParser::~XMLParser() { delete _XMLkeys; delete _stream; - for (List<XMLKeyLayout*>::iterator i = _layoutList.begin(); + for (List<XMLKeyLayout *>::iterator i = _layoutList.begin(); i != _layoutList.end(); ++i) delete *i; diff --git a/common/xmlparser.h b/common/xmlparser.h index 93433b7132..62bb048f8c 100644 --- a/common/xmlparser.h +++ b/common/xmlparser.h @@ -70,7 +70,7 @@ class SeekableReadStream; ParserCallback callback;\ bool doCallback(XMLParser *parent, ParserNode *node) {return ((kLocalParserName*)parent->*callback)(node);} };\ virtual void buildLayout() { \ - Common::Stack<XMLKeyLayout*> layout; \ + Common::Stack<XMLKeyLayout *> layout; \ CustomXMLKeyLayout *lay = 0; \ XMLKeyLayout::XMLKeyProperty prop; \ _XMLkeys = new CustomXMLKeyLayout; \ @@ -334,7 +334,7 @@ protected: */ virtual void cleanup() {} - List<XMLKeyLayout*> _layoutList; + List<XMLKeyLayout *> _layoutList; private: char _char; @@ -346,7 +346,7 @@ private: String _error; /** Current error message */ String _token; /** Current text token */ - Stack<ParserNode*> _activeKey; /** Node stack of the parsed keys */ + Stack<ParserNode *> _activeKey; /** Node stack of the parsed keys */ }; } // End of namespace Common |