]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/image.h
Compilation fix for old GCC versions.
[wxWidgets.git] / include / wx / image.h
index 40418fdc5fd95a77ed53c019acea843d3280f711..21e322bf2cf71ac8eb4dd407c0775c08f159a160 100644 (file)
@@ -210,6 +210,11 @@ public:
     bool Create( int width, int height, unsigned char* data, bool static_data = false );
     bool Create( int width, int height, unsigned char* data, unsigned char* alpha, bool static_data = false );
     bool Create( const char* const* xpmData );
+#ifdef __BORLANDC__
+    // needed for Borland 5.5
+    wxImage( char** xpmData ) { Create(wx_const_cast(const char* const*, xpmData)); }
+    bool Create( char** xpmData ) { return Create(wx_const_cast(const char* const*, xpmData)); }
+#endif
     void Destroy();
 
     // creates an identical copy of the image (the = operator