size_t i = 0;
- while( i < mLine.length() && mLine[i] != '"' && mLine[i] != '<' )
+ while( i < m_Line.length() && m_Line[i] != '"' && m_Line[i] != '<' )
++i;
size_t start = i;
- while( i < mLine.length() && mLine[i] != '"' && mLine[i] != '>' )
+ while( i < m_Line.length() && m_Line[i] != '"' && m_Line[i] != '>' )
++i;
- if ( start < mLine.length() )
+ if ( start < m_Line.length() )
{
string fname;
- fname.append( mLine, start, ( i - start ) );
+ fname.append( m_Line, start, ( i - start ) );
return fname;
}
void spTypeDef::DumpThis(const wxString& indent) const
{
wxLogDebug("%stypedef %s = %s",
- indent.c_str(), m_Name.c_str(), mOriginalType.c_str());
+ indent.c_str(), m_Name.c_str(), m_OriginalType.c_str());
}
void spFile::DumpThis(const wxString& indent) const