slight name changes to better fit the "standard"

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@4877 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
kichik 2007-01-24 13:25:44 +00:00
parent 94fc6745fa
commit 92229d0a82
3 changed files with 11 additions and 11 deletions

View file

@ -24,7 +24,7 @@ class LineParser {
virtual ~LineParser();
bool inComment();
bool InCommentBlock();
bool inCommentBlock();
int parse(char *line, int ignore_escaping=0); // returns -1 on error
int getnumtokens();
void eattoken();
@ -40,7 +40,7 @@ class LineParser {
int m_eat;
int m_nt;
bool m_bCommentBlock;
bool m_incommentblock;
bool m_incomment;
char **m_tokens;
};