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:
@@ -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"))
|
||||
|
Reference in New Issue
Block a user