]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/image.cpp
Temp. fix for ..\..\zlib problem.
[wxWidgets.git] / src / common / image.cpp
index 714750f7061993972bc4e75af463ccd3de35f2b6..b5c526628eab0ca8d43a6dd6eaf42ed1e8cb38b7 100644 (file)
@@ -150,7 +150,7 @@ void wxImage::Destroy()
     UnRef();
 }
 
-wxImage wxImage::Scale( int width, int height )
+wxImage wxImage::Scale( int width, int height ) const
 {
     wxImage image;
 
@@ -944,7 +944,7 @@ wxBitmap wxImage::ConvertToBitmap() const
      // Retrieve depth
 
     GdkVisual *visual = gdk_window_get_visual( bitmap.GetPixmap() );
-    if (visual == NULL) visual = gdk_window_get_visual( (GdkWindow*) &gdk_root_parent );
+    if (visual == NULL) visual = gdk_visual_get_system();
     int bpp = visual->depth;
 
     bitmap.SetDepth( bpp );