[Python-checkins] CVS: python/dist/src/Mac/Modules/icn icnsupport.py,1.5,1.6

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


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

Modified Files:
	icnsupport.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: icnsupport.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Mac/Modules/icn/icnsupport.py,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** icnsupport.py	2001/05/22 21:52:42	1.5
--- icnsupport.py	2001/08/23 13:49:36	1.6
***************
*** 8,17 ****
  # Declarations that change for each manager
  MACHEADERFILE = 'Icons.h'		# The Apple header file
! MODNAME = 'Icn'				# The name of the module
  OBJECTNAME = 'Icon'			# The basic name of the objects used here
  KIND = 'Handle'				# 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 = 'Icons.h'		# The Apple header file
! MODNAME = '_Icn'				# The name of the module
  OBJECTNAME = 'Icon'			# The basic name of the objects used here
  KIND = 'Handle'				# Usually 'Ptr' or 'Handle'
  
  # The following is *usually* unchanged but may still require tuning
! MODPREFIX = 'Icn'			# The prefix for module-wide routines
  OBJECTTYPE = OBJECTNAME + KIND		# The C type used to represent them
  OBJECTPREFIX = MODPREFIX + 'Obj'	# The prefix for object methods