From: Vadim Zeitlin Date: Thu, 28 Oct 2004 10:54:50 +0000 (+0000) Subject: temp compilation fix for wxMac X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/adb61e4d0d1a68b6d79d68615e9dc947e8828e6d temp compilation fix for wxMac git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@30140 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/common/stdpbase.cpp b/src/common/stdpbase.cpp index 58e9e4ebba..57a729623e 100644 --- a/src/common/stdpbase.cpp +++ b/src/common/stdpbase.cpp @@ -24,6 +24,9 @@ #pragma hdrstop #endif +// FIXME: there is no Mac implementation yet +#ifndef __WXMAC__ + #ifndef WX_PRECOMP #include "wx/app.h" #endif //WX_PRECOMP @@ -84,3 +87,5 @@ wxString wxStandardPathsBase::AppendAppName(const wxString& dir) return subdir; } +#endif // !__WXMAC__ +