]> git.saurik.com Git - wxWidgets.git/commitdiff
removed wxMac stuff from here, unless I'm missing something this file is not used...
authorVadim Zeitlin <vadim@wxwidgets.org>
Sat, 25 Mar 2006 14:42:05 +0000 (14:42 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Sat, 25 Mar 2006 14:42:05 +0000 (14:42 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38367 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/unix/stdpaths.cpp

index 780f683d137bd20b9af8929b2678b2239be31905..ba1c3f3016f2efc6b4009c5bfc3b3b449f9d34e3 100644 (file)
     #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