removed wxMac stuff from here, unless I'm missing something this file is not used under Mac at all

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38367 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 2006-03-25 14:42:05 +00:00
parent 300ff33dec
commit 4907027102

View File

@ -38,10 +38,6 @@
#include <unistd.h>
#endif
#if defined(__WXMAC__)
#include "wx/mac/private.h"
#endif
// ============================================================================
// wxStandardPaths implementation
// ============================================================================
@ -132,8 +128,6 @@ wxString wxStandardPaths::GetUserDataDir() const
{
#ifdef __VMS
return wxFileName::GetHomeDir();
#elif defined(__WXMAC__)
return AppendAppName(wxMacFindFolder((short) kUserDomain, kApplicationSupportFolderType, kDontCreateFolder));
#else
return AppendAppName(wxFileName::GetHomeDir() + _T("/."));
#endif