]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/src/_image.i
REWRITE wxStringBase::append and wxString::Replace.
[wxWidgets.git] / wxPython / src / _image.i
index 36cef9cdfac4d2573dd407ff1342dda04c9cda34..196bb06994ba3b3d885393e21e89fc7861521bca 100644 (file)
@@ -128,6 +128,8 @@ key value from a RGB tripple.", "");
 
 class wxImage : public wxObject {
 public:
+    %typemap(out) wxImage*;    // turn off this typemap
+
     DocCtorStr(
         wxImage( const wxString& name, long type = wxBITMAP_TYPE_ANY, int index = -1 ),
         "", "");
@@ -235,6 +237,10 @@ length of the data must be width*height*3.", "",
     // TODO: wxImage( char** xpmData );
 
 
+    // Turn it back on again
+    %typemap(out) wxImage* { $result = wxPyMake_wxObject($1, $owner); }
+
+
     void Create( int width, int height );
     void Destroy();