[Python-checkins] CVS: python/dist/src/Mac/Modules/app appsupport.py,1.7,1.8

Jack Jansen jackjansen@users.sourceforge.net
Thu, 23 Aug 2001 06:47:52 -0700


Update of /cvsroot/python/python/dist/src/Mac/Modules/app
In directory usw-pr-cvs1:/tmp/cvs-serv26773/Python/Mac/Modules/app

Modified Files:
	appsupport.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: appsupport.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Mac/Modules/app/appsupport.py,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** appsupport.py	2001/05/22 21:51:14	1.7
--- appsupport.py	2001/08/23 13:47:50	1.8
***************
*** 8,17 ****
  # Declarations that change for each manager
  MACHEADERFILE = 'Appearance.h'		# The Apple header file
! MODNAME = 'App'				# 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 = 'Appearance.h'		# The Apple header file
! MODNAME = '_App'				# 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 = 'App'			# The prefix for module-wide routines
  OBJECTTYPE = OBJECTNAME + KIND		# The C type used to represent them
  OBJECTPREFIX = MODPREFIX + 'Obj'	# The prefix for object methods