Correct the name of the XPM file containing the icon in xrc sample.

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
This commit is contained in:
Vadim Zeitlin
2010-06-20 18:18:36 +00:00
parent 2ec2e91e99
commit cc31b3c6a5

View File

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