]> git.saurik.com Git - wxWidgets.git/blobdiff - src/mac/utils.cpp
wxADJUST_MIN definition (forgot to ci last time)
[wxWidgets.git] / src / mac / utils.cpp
index 0031f1efade1df19e67b0e7d6246b9774b3b4aac..6d4fa1b5da5ae663c4879cffae8772bfc6cc474e 100644 (file)
@@ -47,6 +47,14 @@ bool wxGetUserId(char *buf, int maxSize)
     return FALSE;
 }
 
+const wxChar* wxGetHomeDir(wxString *pstr)
+{
+       *pstr = wxMacFindFolder(  (short) kOnSystemDisk, kPreferencesFolderType, kDontCreateFolder ) ;
+       return pstr->c_str() ;
+}
+
+
+
 // Get user name e.g. AUTHOR
 bool wxGetUserName(char *buf, int maxSize)
 {
@@ -329,3 +337,7 @@ void wxDisplaySize(int *width, int *height)
  #endif
 }
 
+wxWindow* wxFindWindowAtPoint(const wxPoint& pt)
+{
+    return wxGenericFindWindowAtPoint(pt);
+}