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

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@34413 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Włodzimierz Skiba
2005-05-30 13:06:16 +00:00
parent e484a5f8c2
commit c69a7d10e5
5 changed files with 38 additions and 35 deletions

View File

@@ -599,7 +599,7 @@ public:
// prepocessor statement including '#' and
// attached multiple lines with '\' character
string mLine;
wxString m_Line;
int mDefType; // see SP_PREP_DEFINITION_TYPES enumeration
@@ -665,7 +665,7 @@ public:
class spEnumeration : public spContext
{
public:
string mEnumContent; // full-text content of enumeration
wxString m_EnumContent; // full-text content of enumeration
public:
virtual int GetContextType() const { return SP_CTX_ENUMERATION; }
@@ -681,7 +681,7 @@ class spTypeDef : public spContext
public:
// the original type which is redefined
// by this type definition
string mOriginalType;
wxString m_OriginalType;
public:
virtual int GetContextType() const { return SP_CTX_TYPEDEF; }