]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/bitmap.cpp
type safe proxy typedefs
[wxWidgets.git] / src / msw / bitmap.cpp
index 3a3798dce352d67c3dc07aea01b4d347d6564472..6a2c74a221e869b6b44188143f6376db90f11cd8 100644 (file)
@@ -429,7 +429,11 @@ wxBitmap::wxBitmap(const char bits[], int width, int height, int depth)
 }
 
 // Create from XPM data
+#if wxUSE_IMAGE && wxUSE_XPM
 bool wxBitmap::CreateFromXpm(const char **data)
+#else
+bool wxBitmap::CreateFromXpm(const char **WXUNUSED(data))
+#endif
 {
 #if wxUSE_IMAGE && wxUSE_XPM
     Init();
@@ -520,10 +524,6 @@ bool wxBitmap::DoCreate(int w, int h, int d, WXHDC hdc)
     else // create a DDB
 #endif
     {
-        if ( d == -1 )
-            d = wxDisplayDepth();
-
-        GetBitmapData()->m_depth = d;
 
 #ifndef __WXMICROWIN__
         if ( d > 0 )