Changed char to wxChar.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@41520 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robert Roebling
2006-09-30 11:29:52 +00:00
parent 2562c82329
commit 71520754fc
2 changed files with 20 additions and 19 deletions

View File

@@ -222,13 +222,13 @@ public:
inline operator wxString () const { return MakeString(); }
wxString GetString() const;
// char (wxChar?)
wxVariant(char val, const wxString& name = wxEmptyString);
bool operator== (char value) const;
bool operator!= (char value) const;
void operator= (char value) ;
inline operator char () const { return GetChar(); }
char GetChar() const ;
// wxChar
wxVariant(wxChar val, const wxString& name = wxEmptyString);
bool operator== (wxChar value) const;
bool operator!= (wxChar value) const;
void operator= (wxChar value) ;
inline operator wxChar () const { return GetChar(); }
wxChar GetChar() const ;
// wxArrayString
wxVariant(const wxArrayString& val, const wxString& name = wxEmptyString);