From: Jack Jansen Date: Tue, 1 Oct 1996 10:48:45 +0000 (+0000) Subject: Fixed bug in object-handler install arg handling X-Git-Tag: v1.4~156 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9f2ff9124c79ee1dba64967d594bb2a760922da2;p=thirdparty%2FPython%2Fcpython.git Fixed bug in object-handler install arg handling --- diff --git a/Mac/Modules/waste/wastesupport.py b/Mac/Modules/waste/wastesupport.py index 46715298428f..ac41d6408aa8 100644 --- a/Mac/Modules/waste/wastesupport.py +++ b/Mac/Modules/waste/wastesupport.py @@ -365,7 +365,7 @@ inshandler_body = """ PyMac_GetOSType, &objectType, PyMac_GetOSType, &selector, &py_handler, - ExistingwasteObj_New, &we) ) return NULL; + WEOObj_Convert, &we) ) return NULL; if ( selector == weNewHandler ) handler = (UniversalProcPtr)upp_new_handler; else if ( selector == weDisposeHandler ) handler = (UniversalProcPtr)upp_dispose_handler;