Missed these in the char -> wxChar change.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@41539 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robert Roebling
2006-09-30 21:01:04 +00:00
parent 6f5d78250c
commit 38f82bf695
3 changed files with 18 additions and 18 deletions

View File

@@ -733,7 +733,7 @@ wxVariant::wxVariant(wxChar val, const wxString& name)
bool wxVariant::operator== (wxChar value) const
{
char thisValue;
wxChar thisValue;
if (!Convert(&thisValue))
return false;
else
@@ -761,7 +761,7 @@ void wxVariant::operator= (wxChar value)
wxChar wxVariant::GetChar() const
{
char value;
wxChar value;
if (Convert(& value))
return value;
else
@@ -1987,7 +1987,7 @@ bool wxVariant::Convert(double* value) const
return true;
}
bool wxVariant::Convert(char* value) const
bool wxVariant::Convert(wxChar* value) const
{
wxString type(GetType());
if (type == wxT("char"))