]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/src/_display.i
Fixes for the stubbed version so it will compile
[wxWidgets.git] / wxPython / src / _display.i
index 9e26f5f69d63b9debef5ea476931b6b112e8b0b3..938c85ada3fbad0e6a6e6eb5f134a9fa25fd0931 100644 (file)
@@ -61,8 +61,8 @@ means unspecified/known", "");
 
     %pythoncode { def __nonzero__(self): return self.IsOk() }
     %extend {
-        bool __eq__(const wxVideoMode* other) { return other ? (*self == *other) : False; }
-        bool __ne__(const wxVideoMode* other) { return other ? (*self != *other) : True;  }
+        bool __eq__(const wxVideoMode* other) { return other ? (*self == *other) : false; }
+        bool __ne__(const wxVideoMode* other) { return other ? (*self != *other) : true;  }
     }