]> git.saurik.com Git - wxWidgets.git/commitdiff
wxCocoa build fix. Use XPM everywhere.
authorWłodzimierz Skiba <abx@abx.art.pl>
Tue, 24 May 2005 08:30:25 +0000 (08:30 +0000)
committerWłodzimierz Skiba <abx@abx.art.pl>
Tue, 24 May 2005 08:30:25 +0000 (08:30 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@34310 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

samples/calendar/calendar.cpp

index af492450ce004c83e0e4be01308783a259c2fc25..c3250143e2b46037747d7576be7b0f2a0a779a69 100644 (file)
     #endif // wxUSE_DATEPICKCTRL_GENERIC
 #endif // wxUSE_DATEPICKCTRL
 
-// 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
+#include "../sample.xpm"
 
 // ----------------------------------------------------------------------------
 // private classes
@@ -277,7 +273,7 @@ MyFrame::MyFrame(const wxString& title, const wxPoint& pos, const wxSize& size)
        : wxFrame((wxFrame *)NULL, wxID_ANY, title, pos, size)
 {
     // set the frame icon
-    SetIcon(wxICON(sample));
+    SetIcon(sample_xpm);
 
     // create a menu bar
     wxMenu *menuFile = new wxMenu;