]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/src/wizard.i
Remove wrappers for some functions meant to be interal use only.
[wxWidgets.git] / wxPython / src / wizard.i
index 48a8e9d31c49b6d78b06e9704e8120bc8174d964..df3bf2130a3d4c542645ee6acb8755c512f0e8f0 100644 (file)
@@ -14,7 +14,8 @@
 "`Wizard` is a dialog class that guides the user through a sequence of steps,
 or pages."
 %enddef
-%module(docstring=DOCSTRING) wizard
+
+%module(package="wx", docstring=DOCSTRING) wizard
 
 %{
 #include "wx/wxPython/wxPython.h"
@@ -206,6 +207,7 @@ public:
 
     %pythonAppend wxPyWizardPage   "self._setCallbackInfo(self, PyWizardPage);self._setOORInfo(self)"
     %pythonAppend wxPyWizardPage() ""
+    %typemap(out) wxPyWizardPage*;    // turn off this typemap
     
     // ctor accepts an optional bitmap which will be used for this page instead
     // of the default one for this wizard (should be of the same size). Notice
@@ -224,6 +226,9 @@ public:
 
     %name(PrePyWizardPage)wxPyWizardPage();
 
+    // Turn it back on again
+    %typemap(out) wxPyWizardPage* { $result = wxPyMake_wxObject($1, $owner); }
+
     %extend {
         bool Create(wxWizard *parent,
                     const wxBitmap& bitmap = wxNullBitmap,