Heah guys..
        I seem to be having issues with this list.. I've seen many of my messages come through more than once, when I know I only sent them once.. So that's starting to get annoying... I was wondering if you all would like to have more of a "Forum" to discuss in more realtime.. I love the list, don't get me wrong, but if you wanted, I'd donate server space for a development forum.. let me know..

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

Reply via email to