bool succ = wxGetResource(section, entry, (wxChar **)&s, file);
if (succ)
{
- *value = (float)wxStrtod(s, NULL);
+ *value = (float)wxStrtod(s, (wchar_t **) NULL);
delete[] s;
return true;
}
bool succ = wxGetResource(section, entry, (wxChar **)&s, file);
if (succ)
{
- *value = wxStrtol(s, NULL, 10);
+ *value = wxStrtol(s, (wchar_t **) NULL, 10);
delete[] s;
return true;
}
bool succ = wxGetResource(section, entry, (wxChar **)&s, file);
if (succ)
{
- *value = (int)wxStrtol(s, NULL, 10);
+ *value = (int)wxStrtol(s, (wchar_t **) NULL, 10);
delete[] s;
return true;
}