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

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


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

Modified Files:
	qdoffssupport.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: qdoffssupport.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Mac/Modules/qdoffs/qdoffssupport.py,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** qdoffssupport.py	2001/05/22 21:53:59	1.5
--- qdoffssupport.py	2001/08/23 13:50:16	1.6
***************
*** 8,16 ****
  # Declarations that change for each manager
  MACHEADERFILE = 'QDOffscreen.h'		# The Apple header file
! MODNAME = 'Qdoffs'				# The name of the module
  OBJECTNAME = 'GWorld'			# The basic name of the objects used here
  
  # The following is *usually* unchanged but may still require tuning
! MODPREFIX = MODNAME			# The prefix for module-wide routines
  OBJECTTYPE = OBJECTNAME + 'Ptr'		# The C type used to represent them
  OBJECTPREFIX = OBJECTNAME + 'Obj'	# The prefix for object methods
--- 8,16 ----
  # Declarations that change for each manager
  MACHEADERFILE = 'QDOffscreen.h'		# The Apple header file
! MODNAME = '_Qdoffs'				# The name of the module
  OBJECTNAME = 'GWorld'			# The basic name of the objects used here
  
  # The following is *usually* unchanged but may still require tuning
! MODPREFIX = 'Qdoffs'			# The prefix for module-wide routines
  OBJECTTYPE = OBJECTNAME + 'Ptr'		# The C type used to represent them
  OBJECTPREFIX = OBJECTNAME + 'Obj'	# The prefix for object methods