More warning and error fixes (work in progress with Tinderbox).

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@34451 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Włodzimierz Skiba
2005-05-31 13:46:38 +00:00
parent a5e6cfa82a
commit b631781021
5 changed files with 80 additions and 81 deletions

View File

@@ -34,17 +34,17 @@ class CJSourceParser : public SourceParserBase
{
protected:
// begining of the full-text area of the source file
char* mpStart;
wxChar* mpStart;
// points to first character after the end
// of teh full-text area
char* mpEnd;
wxChar* mpEnd;
// current "privacy level"
int mCurVis;
// current parsing position int full-text area
char* cur;
wxChar* m_cur;
// about the current class
bool mIsVirtual;