wxwidgets
had some old wxwidgets code ... didnt compile anymore.
had to change constants from .e.g "grid" to _T("grid")
and for passing and comparing wxString with chars std::strings I
had to change to stuff like wxString(s.c_str(),wxConvUTF8) ... works now
had to change constants from .e.g "grid" to _T("grid")
and for passing and comparing wxString with chars std::strings I
had to change to stuff like wxString(s.c_str(),wxConvUTF8) ... works now
1 Comments:
That means you were using wxWidgets in unicode against code written for ansi builds. Instead of using unicode you could use wxWidgets in ansi build and it should work out of the box.
Post a Comment
<< Home