From: Robin Dunn Date: Fri, 7 May 2004 16:34:37 +0000 (+0000) Subject: Added OOR typemaps for wxPanel and wxDialog X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/dd6d1477e5c3ba58e021d6df39df5cf7bb58de3a?ds=sidebyside Added OOR typemaps for wxPanel and wxDialog git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@27138 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/wxPython/src/my_typemaps.i b/wxPython/src/my_typemaps.i index dbf2433fe0..9e4c01a0c2 100644 --- a/wxPython/src/my_typemaps.i +++ b/wxPython/src/my_typemaps.i @@ -391,6 +391,8 @@ SWIG_AsDouble(PyObject *obj) %typemap(out) wxHtmlWindow* { $result = wxPyMake_wxObject($1); } %typemap(out) wxPyHtmlWindow* { $result = wxPyMake_wxObject($1); } %typemap(out) wxWizardPage* { $result = wxPyMake_wxObject($1); } +%typemap(out) wxPanel* { $result = wxPyMake_wxObject($1); } +%typemap(out) wxDialog* { $result = wxPyMake_wxObject($1); } %typemap(out) wxSizer* { $result = wxPyMake_wxSizer($1); }