PRIVATE: code convention fixes
This commit is contained in:
parent
750eeeb85f
commit
de9309bb04
2 changed files with 15 additions and 15 deletions
|
@ -240,7 +240,7 @@ Common::Error PrivateEngine::run() {
|
|||
break;
|
||||
|
||||
default:
|
||||
break;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -56,24 +56,24 @@ typedef Common::Queue<Common::Rect *> RectQueue;
|
|||
|
||||
class SymbolMaps {
|
||||
private:
|
||||
StringQueue stringToDefine;
|
||||
RectQueue rectToDefine;
|
||||
StringQueue stringToDefine;
|
||||
RectQueue rectToDefine;
|
||||
|
||||
public:
|
||||
SymbolMap settings;
|
||||
SymbolMap variables;
|
||||
SymbolMap cursors;
|
||||
SymbolMap locations;
|
||||
SymbolMap rects;
|
||||
ConstantList constants;
|
||||
SymbolMap settings;
|
||||
SymbolMap variables;
|
||||
SymbolMap cursors;
|
||||
SymbolMap locations;
|
||||
SymbolMap rects;
|
||||
ConstantList constants;
|
||||
|
||||
NameList variableList;
|
||||
NameList locationList;
|
||||
NameList variableList;
|
||||
NameList locationList;
|
||||
|
||||
Symbol *constant(int t, int d, char *s);
|
||||
Symbol *lookupName(char *n);
|
||||
void installAll(char *n);
|
||||
void defineSymbol(char *, Common::Rect *);
|
||||
Symbol *constant(int t, int d, char *s);
|
||||
Symbol *lookupName(char *n);
|
||||
void installAll(char *n);
|
||||
void defineSymbol(char *, Common::Rect *);
|
||||
};
|
||||
|
||||
} // End of namespace Private
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue