]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/src/_font.i
install activex too
[wxWidgets.git] / wxPython / src / _font.i
index 833c37b9b48f813e774c6057e6cacec4b8a151dc..c342e425e4340a523f35fccf401708a23fb0bf7c 100644 (file)
@@ -452,8 +452,10 @@ public:
     %pythoncode { def __nonzero__(self): return self.Ok() }
 
     // comparison
     %pythoncode { def __nonzero__(self): return self.Ok() }
 
     // comparison
-    bool operator == (const wxFont& font) const;
-    bool operator != (const wxFont& font) const;
+    %extend {
+        bool __eq__(const wxFont* other) { return other ? (*self == *other) : False; }
+        bool __ne__(const wxFont* other) { return other ? (*self != *other) : True;  }
+    }
 
     // accessors: get the font characteristics
     virtual int GetPointSize() const;
 
     // accessors: get the font characteristics
     virtual int GetPointSize() const;