]> git.saurik.com Git - wxWidgets.git/commitdiff
use XPMs in wxMGL
authorVáclav Slavík <vslavik@fastmail.fm>
Thu, 15 Nov 2001 23:55:08 +0000 (23:55 +0000)
committerVáclav Slavík <vslavik@fastmail.fm>
Thu, 15 Nov 2001 23:55:08 +0000 (23:55 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12438 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/gdicmn.h

index 063bce9b80294e90fdc4f84fd9790dbf9b8e8780..c09a1808f291d100eee95025725501421dba058a 100644 (file)
@@ -153,8 +153,8 @@ enum wxStockCursor
     // Load from a resource
     #define wxICON(X) wxIcon("" #X "")
 #elif defined(__WXMGL__)
-    // Load from a resource
-    #define wxICON(X) wxIcon("" #X "")
+    // Initialize from an included XPM
+    #define wxICON(X) wxIcon( (const char**) X##_xpm )
 #elif defined(__WXGTK__)
     // Initialize from an included XPM
     #define wxICON(X) wxIcon( (const char**) X##_xpm )
@@ -173,9 +173,9 @@ enum wxStockCursor
    under Unix bitmaps live in XPMs and under Windows they're in ressources.
  */
 
-#if defined(__WXMSW__) || defined(__WXPM__) || defined(__WXMGL__)
+#if defined(__WXMSW__) || defined(__WXPM__)
     #define wxBITMAP(name) wxBitmap(#name, wxBITMAP_TYPE_RESOURCE)
-#elif defined(__WXGTK__) || defined(__WXMOTIF__) || defined(__WXMAC__)
+#elif defined(__WXGTK__) || defined(__WXMOTIF__) || defined(__WXMAC__) || defined(__WXMGL__)
     // Initialize from an included XPM
     #define wxBITMAP(name) wxBitmap( (const char**) name##_xpm )
 #else // other platforms