[Python-checkins] CVS: python/dist/src/Mac/Modules/help helpsupport.py,1.4,1.5
Jack Jansen
jackjansen@users.sourceforge.net
Thu, 23 Aug 2001 06:49:21 -0700
Update of /cvsroot/python/python/dist/src/Mac/Modules/help
In directory usw-pr-cvs1:/tmp/cvs-serv27287/Python/Mac/Modules/help
Modified Files:
helpsupport.py
Log Message:
The MacOS toolbox modules have acquired an _ in front of their name. Normal usage is through a wrapper module (without underscore) which lives in the Carbon package.
Index: helpsupport.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Mac/Modules/help/helpsupport.py,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** helpsupport.py 2000/07/14 22:16:40 1.4
--- helpsupport.py 2001/08/23 13:49:19 1.5
***************
*** 8,17 ****
# Declarations that change for each manager
MACHEADERFILE = 'Balloons.h' # The Apple header file
! MODNAME = 'Help' # The name of the module
OBJECTNAME = 'UNUSED' # The basic name of the objects used here
KIND = 'Record' # Usually 'Ptr' or 'Handle'
# The following is *usually* unchanged but may still require tuning
! MODPREFIX = MODNAME # The prefix for module-wide routines
OBJECTTYPE = OBJECTNAME + KIND # The C type used to represent them
OBJECTPREFIX = MODPREFIX + 'Obj' # The prefix for object methods
--- 8,17 ----
# Declarations that change for each manager
MACHEADERFILE = 'Balloons.h' # The Apple header file
! MODNAME = '_Help' # The name of the module
OBJECTNAME = 'UNUSED' # The basic name of the objects used here
KIND = 'Record' # Usually 'Ptr' or 'Handle'
# The following is *usually* unchanged but may still require tuning
! MODPREFIX = 'Help' # The prefix for module-wide routines
OBJECTTYPE = OBJECTNAME + KIND # The C type used to represent them
OBJECTPREFIX = MODPREFIX + 'Obj' # The prefix for object methods