]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/bitmap.cpp
More small fixes
[wxWidgets.git] / src / msw / bitmap.cpp
index 46cbb8f13864b8826dc8140085aed56e55eba4a3..437a6c4452a4988e261a0075cde4e5adbc45c222 100644 (file)
@@ -293,7 +293,7 @@ bool wxBitmap::CreateFromXpm(const char **data)
     wxImage img = decoder.ReadData(data);
     wxCHECK_MSG( img.Ok(), FALSE, wxT("invalid bitmap data") )
     
-    *this = img.ConvertToBitmap();
+    *this = wxBitmap(img);
     return TRUE;
 #else
        return FALSE;
@@ -1039,6 +1039,10 @@ bool wxMask::Create(const wxBitmap& bitmap, const wxColour& colour)
 
     bool ok = TRUE;
 
+    // SelectObject() will fail
+    wxASSERT_MSG( !bitmap.GetSelectedInto(),
+                  _T("bitmap can't be selected in another DC") );
+
     HGDIOBJ hbmpSrcOld = ::SelectObject(srcDC, GetHbitmapOf(bitmap));
     if ( !hbmpSrcOld )
     {