From: Gilles Depeyrot Date: Sun, 22 Jul 2001 20:26:08 +0000 (+0000) Subject: correction for Mac OS X compilation X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/8f99a08fc094301ba6a62c755fb5b10f91e4bf18?ds=sidebyside correction for Mac OS X compilation git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11160 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/samples/sockets/client.cpp b/samples/sockets/client.cpp index ea1f02c814..ec02f7eada 100644 --- a/samples/sockets/client.cpp +++ b/samples/sockets/client.cpp @@ -43,7 +43,7 @@ // -------------------------------------------------------------------------- // the application icon -#if defined(__WXGTK__) || defined(__WXMOTIF__) +#if defined(__WXGTK__) || defined(__WXMOTIF__) || defined(__WXMAC__) # include "mondrian.xpm" #endif diff --git a/samples/sockets/server.cpp b/samples/sockets/server.cpp index 47acc20ab4..aef4d493d1 100644 --- a/samples/sockets/server.cpp +++ b/samples/sockets/server.cpp @@ -41,7 +41,7 @@ // -------------------------------------------------------------------------- // the application icon -#if defined(__WXGTK__) || defined(__WXMOTIF__) +#if defined(__WXGTK__) || defined(__WXMOTIF__) || defined(__WXMAC__) # include "mondrian.xpm" #endif