]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/x11/bitmap.h
renamed IsRefTo() to IsSameAs() (do complain if this is not more clear) and
[wxWidgets.git] / include / wx / x11 / bitmap.h
index 9f104b2b00cf0ce0aa38451de14dc19457930427..5a3ab7be0b76d18f4fc2814c70a472b508fae647 100644 (file)
@@ -74,12 +74,18 @@ public:
     wxBitmap( int width, int height, int depth = -1 );
     wxBitmap( const char bits[], int width, int height, int depth = 1 );
     wxBitmap( const char* const* bits );
+#if defined (__GNUC__) && __GNUC__ < 3
+    // needed for old GCC
+    wxBitmap(char** data)
+    {
+        *this = wxBitmap(wx_const_cast(const char* const*, data));
+    }
+#endif
     wxBitmap( const wxString &filename, wxBitmapType type = wxBITMAP_TYPE_XPM );
     virtual ~wxBitmap();
 
-    bool operator == ( const wxBitmap& bmp ) const;
-    bool operator != ( const wxBitmap& bmp ) const;
-    bool Ok() const;
+    bool Ok() const { return IsOk(); }
+    bool IsOk() const;
 
     static void InitStandardHandlers();