From: Gilles Depeyrot Date: Tue, 8 May 2001 14:01:50 +0000 (+0000) Subject: added CreateFromXpm method X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/b7d667c57be0297ff49739519e4adb8a5ea09ee5 added CreateFromXpm method git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@10053 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/mac/bitmap.h b/include/wx/mac/bitmap.h index 84e7153375..b06e1030e8 100644 --- a/include/wx/mac/bitmap.h +++ b/include/wx/mac/bitmap.h @@ -142,8 +142,9 @@ public: wxBitmap(const char bits[], int width, int height, int depth = 1); // Initialize with XPM data - wxBitmap(const char **data); - wxBitmap(char **data); + bool CreateFromXpm(const char **bits); + wxBitmap(const char **bits); + wxBitmap(char **bits); // Load a file or resource wxBitmap(const wxString& name, long type = wxBITMAP_TYPE_PICT_RESOURCE);