On Wed, Dec 31, 2008 at 1:02 PM, arpin <ar...@kingston.net> wrote:
> please change
>
> wxPrintf(msg + wxT("\n"));
>
> to
>
> wxPrintf(wxT("%s"), msg + wxT("\n"));
>
> because: print("%S") crashes

Strange, it shouldn't, but thanks. I changed them to

wxPrintf(wxT("%s\n"), msg.c_str());

so they'd work with unicode too.


Regards,
    John

------------------------------------------------------------------------------
Check out the new SourceForge.net Marketplace.
It is the best place to buy or sell services for
just about anything Open Source.
http://p.sf.net/sfu/Xq1LFB
_______________________________________________
wxlua-users mailing list
wxlua-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wxlua-users

Reply via email to