Saturday, April 07, 2007

multiple definition of Control::GetEventTable()

get errors like these with wxwidgets (nice lib btw) ...
the BEGIN_EVENT_TABLE( ... stuff needs to go into the cpp file not the header

Wednesday, April 04, 2007

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