anyway, trying to build and in:
wxDialogLayout under the GUI directory there is a section of code:
wxRadioBox *CreateRadioBox(wxWindow *parent,
const wxChar *labelFull,
long widthMax,
wxControl *last,
wxCoord nRightMargin)
{
// split the "label" into the real label and the choices:
wxString label = labelFull;
wxArrayString choices = SplitLabelWithChoices(&label);
wxString *strings = choices.GetStringArray();
wxLayoutConstraints *c;
// for the radiobox
c = new wxLayoutConstraints;
SetTopConstraint(parent, c, last,
However, according to the build error and the docs, wxArrayString.GetStringArray() does not exist..
Let me know if you guys have changed this class, I have the most recent CVS version of both M and wxWindows..
Dave