wxString wxStandardPathsCF::GetDocumentsDir() const
{
+#ifdef __WXMAC__
return wxMacFindFolderNoSeparator
(
#if TARGET_API_MAC_OSX
kDocumentsFolderType,
kCreateFolder
);
+#else
+ return wxFileName::GetHomeDir() + wxT("/Documents");
+#endif
}
// ----------------------------------------------------------------------------