From e88df737fbcc00e04903275de9492c84f170ebb5 Mon Sep 17 00:00:00 2001 From: David Surovell Date: Sat, 26 Nov 2005 23:27:21 +0000 Subject: [PATCH] fixed GetFreeMemory decl. to match wxWidgets git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@36256 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- wxPython/src/_functions.i | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 -- 2.45.2