Should return wxImage not bool
authorJulian Smart <julian@anthemion.co.uk>
Sun, 3 Apr 2005 19:30:16 +0000 (19:30 +0000)
committerJulian Smart <julian@anthemion.co.uk>
Sun, 3 Apr 2005 19:30:16 +0000 (19:30 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@33308 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/mgl/bitmap.cpp

index bef5fc7e40e0e8425e44c3086b7603bc2fa77b45..b8a3f3906d172c2060adb08f78db91aa91a6c4bc 100644 (file)
@@ -317,7 +317,7 @@ wxBitmap::wxBitmap(const wxImage& image, int depth)
 
 wxImage wxBitmap::ConvertToImage() const
 {
-    wxCHECK_MSG( Ok(), FALSE, wxT("invalid bitmap") );
+    wxCHECK_MSG( Ok(), wxImage(), wxT("invalid bitmap") );
 
     int width, height;
     width = GetWidth();