]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/src/_bitmap.i
replaced wxStream::GetSize() with GetLength() (still keep the former but it will...
[wxWidgets.git] / wxPython / src / _bitmap.i
index 241c9ceadaa09499c75dee3108cf201342c350bb..a89b83b9689683299c8f54253b6a155d6a20cf5d 100644 (file)
@@ -65,6 +65,8 @@ converted to a wx.Bitmap, so any image file format supported by
 ");
 
 
+MustHaveApp(wxBitmap);
+
 class wxBitmap : public wxGDIObject
 {
 public:
@@ -287,8 +289,8 @@ the ``type`` parameter.", "");
     %pythoncode { def __nonzero__(self): return self.Ok() }
 
     %extend {
-        bool __eq__(const wxBitmap* other) { return other ? (*self == *other) : False; }
-        bool __ne__(const wxBitmap* other) { return other ? (*self != *other) : True;  }
+        bool __eq__(const wxBitmap* other) { return other ? (*self == *other) : false; }
+        bool __ne__(const wxBitmap* other) { return other ? (*self != *other) : true;  }
     }
 };
 
@@ -306,6 +308,8 @@ A mask may be associated with a `wx.Bitmap`. It is used in
 `wx.MemoryDC` with a `wx.Bitmap` selected into it that contains a
 mask.", "");
 
+MustHaveApp(wxMask);
+
 class wxMask : public wxObject {
 public: