[Python-checkins] CVS: python/dist/src/Mac/Modules/qd qdsupport.py,1.33,1.34

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


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

Modified Files:
	qdsupport.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: qdsupport.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Mac/Modules/qd/qdsupport.py,v
retrieving revision 1.33
retrieving revision 1.34
diff -C2 -d -r1.33 -r1.34
*** qdsupport.py	2001/06/20 21:22:12	1.33
--- qdsupport.py	2001/08/23 13:50:22	1.34
***************
*** 8,16 ****
  # Declarations that change for each manager
  MACHEADERFILE = 'QuickDraw.h'		# The Apple header file
! MODNAME = 'Qd'				# The name of the module
  OBJECTNAME = 'Graf'			# 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 = MODPREFIX + 'Obj'	# The prefix for object methods
--- 8,16 ----
  # Declarations that change for each manager
  MACHEADERFILE = 'QuickDraw.h'		# The Apple header file
! MODNAME = '_Qd'				# The name of the module
  OBJECTNAME = 'Graf'			# The basic name of the objects used here
  
  # The following is *usually* unchanged but may still require tuning
! MODPREFIX = 'Qd'			# The prefix for module-wide routines
  OBJECTTYPE = OBJECTNAME + 'Ptr'		# The C type used to represent them
  OBJECTPREFIX = MODPREFIX + 'Obj'	# The prefix for object methods