wxSingleChoiceDialog(wxWindow* parent,
wxString* message,
wxString* caption,
- int LCOUNT, wxString* LIST,
+ int LCOUNT, wxString* choices,
//char** clientData = NULL,
long style = wxOK | wxCANCEL | wxCENTRE,
wxPoint* pos = &wxPyDefaultPosition) {
return new wxSingleChoiceDialog(parent, *message, *caption,
- LCOUNT, LIST, NULL, style, *pos);
+ LCOUNT, choices, NULL, style, *pos);
}
}
class wxFontDialog : public wxDialog {
public:
- wxFontDialog(wxWindow* parent, wxFontData* data = NULL);
+ wxFontDialog(wxWindow* parent, wxFontData* data);
%pragma(python) addtomethod = "__init__:wx._StdDialogCallbacks(self)"