Fixed minor typos in the name of variables.

This commit is contained in:
Artur Wieczorek
2015-06-08 21:48:08 +02:00
parent cb6efbd3c3
commit c8088e479a
3 changed files with 8 additions and 8 deletions

View File

@@ -692,7 +692,7 @@ template<> inline wxVariant WXVARIANT( const wxColour& value )
class WXDLLIMPEXP_PROPGRID wxPGStringTokenizer
{
public:
wxPGStringTokenizer( const wxString& str, wxChar delimeter );
wxPGStringTokenizer( const wxString& str, wxChar delimiter );
~wxPGStringTokenizer();
bool HasMoreTokens(); // not const so we can do some stuff in it
@@ -702,7 +702,7 @@ protected:
const wxString* m_str;
wxString::const_iterator m_curPos;
wxString m_readyToken;
wxUniChar m_delimeter;
wxUniChar m_delimiter;
};
#define WX_PG_TOKENIZER2_BEGIN(WXSTRING,DELIMITER) \