]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/bitmap.cpp
merged optimizations from 2.2
[wxWidgets.git] / src / msw / bitmap.cpp
index 00dfae1667e700a90bc10a1ab31cc365c1f1950b..0fe0be85c713c75294219be20373ae9d79ebe88b 100644 (file)
@@ -302,7 +302,7 @@ wxBitmap::wxBitmap(void *data, long type, int width, int height, int depth)
     (void)Create(data, type, width, height, depth);
 }
 
-wxBitmap::wxBitmap(const wxString& filename, long type)
+wxBitmap::wxBitmap(const wxString& filename, wxBitmapType type)
 {
     Init();
 
@@ -391,7 +391,7 @@ bool wxBitmap::CreateFromImage( const wxImage& image, int depth )
     }
 
     // set bitmap parameters
-    wxCHECK_MSG( Ok(), FALSE, wxT("invalid image") );
+    wxCHECK_MSG( image.Ok(), FALSE, wxT("invalid image") );
     SetWidth( width );
     SetHeight( bmpHeight );
     if (depth == -1) depth = wxDisplayDepth();