]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/src/_bitmap.i
embedded sample's README updates
[wxWidgets.git] / wxPython / src / _bitmap.i
index a5b032d961367e859be5aa9219982735b08b6207..8f9213ea362d19a581a298c0b253bd9e335bc4e9 100644 (file)
@@ -190,6 +190,11 @@ public:
 #endif
 
     %pythoncode { def __nonzero__(self): return self.Ok() }
+
+    %extend {
+        bool __eq__(const wxBitmap* other) { return other ? (*self == *other) : False; }
+        bool __ne__(const wxBitmap* other) { return other ? (*self != *other) : True;  }
+    }
 };