#ifndef WX_PRECOMP
#include "wx/list.h"
#include "wx/string.h"
+ #include "wx/log.h"
+ #include "wx/app.h"
#endif
-#include "wx/log.h"
#include "wx/config.h"
-#include "wx/app.h"
//-----------------------------------------------------------------------------
// resource functions
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;
}