]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/src/_treectrl.i
fixed some docstrings
[wxWidgets.git] / wxPython / src / _treectrl.i
index 0dfc6bfd0035f3021786ff572f544001147d6248..253b6303ff92b3b1c9e45e1bc10b0ab83dd81a2a 100644 (file)
@@ -96,15 +96,8 @@ public:
     bool IsOk() const;
 
     %extend {
-        bool operator==(const wxTreeItemId* other) {
-            if (!other) return False;
-            return *self == *other;
-        }
-
-        bool operator!=(const wxTreeItemId* other) {
-            if (!other) return True;
-            return *self != *other;
-        }
+        bool __eq__(const wxTreeItemId* other) { return other ? (*self == *other) : False; }
+        bool __ne__(const wxTreeItemId* other) { return other ? (*self != *other) : True;  }
     }
 
     void*  m_pItem;