More Unicode compilation fixes.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@7770 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -266,7 +266,7 @@ bool wxGenericValidator::TransferToWindow(void)
|
||||
else if (m_pInt)
|
||||
{
|
||||
wxString str;
|
||||
str.Printf("%d", *m_pInt);
|
||||
str.Printf(wxT("%d"), *m_pInt);
|
||||
pControl->SetValue(str);
|
||||
return TRUE;
|
||||
}
|
||||
@@ -483,7 +483,7 @@ bool wxGenericValidator::TransferFromWindow(void)
|
||||
}
|
||||
else if (m_pInt)
|
||||
{
|
||||
*m_pInt = atoi(pControl->GetValue());
|
||||
*m_pInt = wxAtoi(pControl->GetValue());
|
||||
return TRUE;
|
||||
}
|
||||
} else
|
||||
|
Reference in New Issue
Block a user