]> git.saurik.com Git - wxWidgets.git/commitdiff
added CreateFromXpm method
authorGilles Depeyrot <gilles_depeyrot@mac.com>
Tue, 8 May 2001 14:01:50 +0000 (14:01 +0000)
committerGilles Depeyrot <gilles_depeyrot@mac.com>
Tue, 8 May 2001 14:01:50 +0000 (14:01 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@10053 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/mac/bitmap.h

index 84e7153375ece20bac7abac68973c4d1e520ffa3..b06e1030e8dd71ebd97f54f5a61e1b28e68409f8 100644 (file)
@@ -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);