]> git.saurik.com Git - wxWidgets.git/commitdiff
Correct the name of the XPM file containing the icon in xrc sample.
authorVadim Zeitlin <vadim@wxwidgets.org>
Sun, 20 Jun 2010 18:18:36 +0000 (18:18 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Sun, 20 Jun 2010 18:18:36 +0000 (18:18 +0000)
This fixes a compilation error introduced during de-mondrianization of the
samples.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@64658 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

samples/xrc/myframe.cpp

index fe36c8acfab43b4167050b1ff41a5eb2a12bda3d..103d03b851d60843674ce90487ade3ec728ee038 100644 (file)
 // Regular resources (the non-XRC kind).
 //-----------------------------------------------------------------------------
 
-// The application icon
-// All non-MSW platforms use an xpm. MSW uses an .ico file
-#if defined(__WXGTK__) || defined(__WXX11__) || defined(__WXMOTIF__) || defined(__WXMAC__) || defined(__WXMGL__)
-    #include "rc/appicon.xpm"
+// the application icon (under Windows and OS/2 it is in resources and even
+// though we could still include the XPM here it would be unused)
+#if !defined(__WXMSW__) && !defined(__WXPM__)
+    #include "../sample.xpm"
 #endif
 
 //-----------------------------------------------------------------------------