return selections.GetCount();
}
-size_t wxGetMultipleChoices(wxArrayInt selections,
+size_t wxGetMultipleChoices(wxArrayInt& selections,
const wxString& message,
const wxString& caption,
const wxArrayString& aChoices,
const wxString& message,
const wxString& caption,
int n, const wxString *choices,
- long styleDlg,
+ long WXUNUSED(styleDlg), // FIXME: why unused?
const wxPoint& pos,
long styleLbox)
{
const wxString *choices,
char **clientData,
long style,
- const wxPoint& pos)
+ const wxPoint& WXUNUSED(pos))
{
Create(parent, message, caption, n, choices, clientData, style);
}
const wxStringList& choices,
char **clientData,
long style,
- const wxPoint& pos)
+ const wxPoint& WXUNUSED(pos))
{
Create(parent, message, caption, choices, clientData, style);
}