PRIVATE: code convention fixes

This commit is contained in:
neuromancer 2021-02-20 14:55:56 -03:00 committed by Eugene Sandulenko
parent 750eeeb85f
commit de9309bb04
2 changed files with 15 additions and 15 deletions

View file

@ -240,7 +240,7 @@ Common::Error PrivateEngine::run() {
break; break;
default: default:
break; break;
} }
} }

View file

@ -56,24 +56,24 @@ typedef Common::Queue<Common::Rect *> RectQueue;
class SymbolMaps { class SymbolMaps {
private: private:
StringQueue stringToDefine; StringQueue stringToDefine;
RectQueue rectToDefine; RectQueue rectToDefine;
public: public:
SymbolMap settings; SymbolMap settings;
SymbolMap variables; SymbolMap variables;
SymbolMap cursors; SymbolMap cursors;
SymbolMap locations; SymbolMap locations;
SymbolMap rects; SymbolMap rects;
ConstantList constants; ConstantList constants;
NameList variableList; NameList variableList;
NameList locationList; NameList locationList;
Symbol *constant(int t, int d, char *s); Symbol *constant(int t, int d, char *s);
Symbol *lookupName(char *n); Symbol *lookupName(char *n);
void installAll(char *n); void installAll(char *n);
void defineSymbol(char *, Common::Rect *); void defineSymbol(char *, Common::Rect *);
}; };
} // End of namespace Private } // End of namespace Private