]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/src/_menu.i
reSWIGged
[wxWidgets.git] / wxPython / src / _menu.i
index 1bbb3a56e403fc8a81a0efce67a41f6f76a31ee6..7d36331a39dc8abd766ea083ed91a67dc0a6d1c8 100644 (file)
@@ -369,7 +369,7 @@ public:
     // turn off this typemap
     %typemap(out) wxMenuItem*;    
 
-    wxMenuItem(wxMenu* parentMenu=NULL, int id=wxID_ANY,
+    wxMenuItem(wxMenu* parentMenu=NULL, int id=wxID_SEPARATOR,
                const wxString& text = wxPyEmptyString,
                const wxString& help = wxPyEmptyString,
                wxItemKind kind = wxITEM_NORMAL,
@@ -379,6 +379,9 @@ public:
     // Turn it back on again
     %typemap(out) wxEvtHandler* { $result = wxPyMake_wxObject($1, $owner); }
 
+    // Make Destroy a NOP.  The destruction will be handled by SWIG.
+    %pythoncode { def Destroy(self): pass }
+
     
     // the menu we're in
     wxMenu *GetMenu() const;