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:
Ove Kaaven
2000-07-19 08:20:03 +00:00
parent 888b0f22a9
commit 66b3ec7f9a
3 changed files with 7 additions and 7 deletions

View File

@@ -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