]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/src/_obj.i
fixed a compile error in one of the stub classes
[wxWidgets.git] / wxPython / src / _obj.i
index c0c72f124a40b2db63ea4a3ac5052261a51b884d..1555a2c5114d6ad94287e7fd2653ab8caa86ed5b 100644 (file)
@@ -30,12 +30,22 @@ public:
             return self->GetClassInfo()->GetClassName();
         }
 
+        %pythonPrepend Destroy "args[0].this.own(False)"
         DocStr(Destroy,
                "Deletes the C++ object this Python object is a proxy for.", "");
         void Destroy() {
             delete self;
         }
     }
+
+    DocDeclStr(
+        bool , IsSameAs(const wxObject& p) const,
+        "For wx.Objects that use C++ reference counting internally, this method
+can be used to determine if two objects are referencing the same data
+object.", "");
+    
+
+    %property(ClassName, GetClassName, doc="See `GetClassName`");
 };