// Name: src/gtk1/utilsres.cpp
// Purpose:
// Author: Robert Roebling
-// Id: $Id$
// Copyright: (c) 1998 Robert Roebling
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
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;
}