]> git.saurik.com Git - wxWidgets.git/commitdiff
fixed GetFreeMemory decl. to match wxWidgets
authorDavid Surovell <davids@osafoundation.org>
Sat, 26 Nov 2005 23:27:21 +0000 (23:27 +0000)
committerDavid Surovell <davids@osafoundation.org>
Sat, 26 Nov 2005 23:27:21 +0000 (23:27 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@36256 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

wxPython/src/_functions.i

index 23b2cb1cb59959b1600a36d342034b1835e59688..b9bbcc8b69129a5c05d00185cef6aa0764eaada3 100644 (file)
@@ -78,10 +78,10 @@ wxString wxGetOsDescription();
 // int wxParseCommonDialogsFilter(const wxString& wildCard, wxArrayString& descriptions, wxArrayString& filters);
 
 #if defined(__WXMSW__) || defined(__WXMAC__)
-long wxGetFreeMemory();
+wxMemorySize wxGetFreeMemory();
 #else
 %inline %{
-    long wxGetFreeMemory()
+    wxMemorySize wxGetFreeMemory()
         { wxPyRaiseNotImplemented(); return 0; }
 %}
 #endif