]> git.saurik.com Git - wxWidgets.git/blobdiff - utils/wxPython/src/cmndlgs.i
Compilation fixes
[wxWidgets.git] / utils / wxPython / src / cmndlgs.i
index 5b51790333a5f140a4aaf1252002e770b2b86924..158e2350178e19064f44a2ddc94b30c5fd03d166 100644 (file)
@@ -127,12 +127,12 @@ public:
         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);
         }
     }
 
@@ -188,7 +188,7 @@ public:
 
 class wxFontDialog : public wxDialog {
 public:
-    wxFontDialog(wxWindow* parent, wxFontData* data = NULL);
+    wxFontDialog(wxWindow* parent, wxFontData* data);
 
     %pragma(python) addtomethod = "__init__:wx._StdDialogCallbacks(self)"