- bool __lt__(const wxTimeSpan* other) { return other ? (*self < *other) : False; }
- bool __le__(const wxTimeSpan* other) { return other ? (*self <= *other) : False; }
- bool __gt__(const wxTimeSpan* other) { return other ? (*self > *other) : True; }
- bool __ge__(const wxTimeSpan* other) { return other ? (*self >= *other) : True; }
- bool __eq__(const wxTimeSpan* other) { return other ? (*self == *other) : False; }
- bool __ne__(const wxTimeSpan* other) { return other ? (*self != *other) : True; }
+ bool __lt__(const wxTimeSpan* other) { return other ? (*self < *other) : false; }
+ bool __le__(const wxTimeSpan* other) { return other ? (*self <= *other) : false; }
+ bool __gt__(const wxTimeSpan* other) { return other ? (*self > *other) : true; }
+ bool __ge__(const wxTimeSpan* other) { return other ? (*self >= *other) : true; }
+ bool __eq__(const wxTimeSpan* other) { return other ? (*self == *other) : false; }
+ bool __ne__(const wxTimeSpan* other) { return other ? (*self != *other) : true; }