Fixed wxPoint.__cmp__ and a few others

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@10201 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2001-05-18 02:32:22 +00:00
parent 3bdc265d9d
commit 419c299ae5
6 changed files with 72 additions and 12 deletions

View File

@@ -75,6 +75,12 @@ public:
PyTuple_SET_ITEM(tup, 1, PyInt_FromLong(self->y));
return tup;
}
int __cmp__(const wxSize* sz) {
if (! sz) return 1;
if (*self == *sz) return 0;
return -1;
}
}
%pragma(python) addtoclass = "
@@ -122,8 +128,9 @@ public:
}
int __cmp__(const wxRealPoint* p) {
if (! p) return 0;
return *self == *p;
if (! p) return 1;
if (*self == *p) return 0;
return -1;
}
}
%pragma(python) addtoclass = "
@@ -169,8 +176,9 @@ public:
}
int __cmp__(const wxPoint* p) {
if (! p) return 0;
return *self == *p;
if (! p) return 1;
if (*self == *p) return 0;
return -1;
}
}
%pragma(python) addtoclass = "
@@ -237,8 +245,9 @@ public:
}
int __cmp__(const wxRect* rect) {
if (! rect) return 0;
return *self == *rect;
if (! rect) return 1;
if (*self == *rect) return 0;
return -1;
}
}