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: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9f2ff9124c79ee1dba64967d594bb2a760922da2;p=python Fixed bug in object-handler install arg handling --- diff --git a/Mac/Modules/waste/wastesupport.py b/Mac/Modules/waste/wastesupport.py index 4671529842..ac41d6408a 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;