I just found that by using the latest svn header version of code::blocks
Some generated code has changed from:
ComboBoxBaudRate = new wxComboBox(ConfigPanel, ID_COMBOBOX1, wxEmptyString, wxDefaultPosition, wxDefaultSize, 0, 0, wxTE_PROCESS_ENTER, wxDefaultValidator, _T("ID_COMBOBOX1"));
ComboBoxBaudRate->Append(_("110"));
to
ComboBoxBaudRate->Append(_T("110"));
I mean the _() is changed to _T().
Is that by design? Any ideas?
I think the choice option should be translated, so I think _() is the correct option.