|
From: Pablo M. <ca...@si...> - 2005-11-11 15:31:14
|
hi!
one of the problems i'm having with port to linux is wx windows
functions receiving strings directly as char* and my compiler complains.
i think this can be solved by enclosing them into wxT(),
example:
tabbedctrl->AddPage("Main");
should be:
tabbedctrl->AddPage(wxT("Main"));
i'll correct it in current cvs, and i hope this solution is correct,
please do this and it should compile seamlessly.
it does not address my problems with running the app, just make it
possible to compile it.
pablo
|