]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/image.cpp
Removing some level 3 warning
[wxWidgets.git] / src / common / image.cpp
index ac9acecf15f8fc0e932857464e028c0f270abab7..ab36e52be6d04b5260e104fd2823efe0c9cd274f 100644 (file)
@@ -682,7 +682,11 @@ wxBitmap wxImage::ConvertToBitmap() const
         return wxNullBitmap;
 
     // sizeLimit is the MS upper limit for the DIB size
+#ifdef  WIN32
     int sizeLimit = 1024*768*3;
+#else
+    int sizeLimit = 0x7fff ;
+#endif
 
     // width and height of the device-dependent bitmap
     int width = GetWidth();