Martin Jørgensen wrote:
> It seems like it doesn't like the const char's:
Here is the suggested manual page:
http://www.wxwidgets.org/manuals/2.6.3/wx_unicode.html
> menuFile->Append( ID_About, "&About..." ); <<<<-- ERROR
And the errors are fixed by adding _(), like this:
menuFile->Append( ID_About, _("&About...") );