From: David Surovell Date: Sat, 26 Nov 2005 23:27:21 +0000 (+0000) Subject: fixed GetFreeMemory decl. to match wxWidgets X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/e88df737fbcc00e04903275de9492c84f170ebb5?ds=inline fixed GetFreeMemory decl. to match wxWidgets git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@36256 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/wxPython/src/_functions.i b/wxPython/src/_functions.i index 23b2cb1cb5..b9bbcc8b69 100644 --- a/wxPython/src/_functions.i +++ b/wxPython/src/_functions.i @@ -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