[Python-checkins] CVS: python/dist/src/Mac/Modules/qt qtsupport.py,1.17,1.18

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


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

Modified Files:
	qtsupport.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: qtsupport.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Mac/Modules/qt/qtsupport.py,v
retrieving revision 1.17
retrieving revision 1.18
diff -C2 -d -r1.17 -r1.18
*** qtsupport.py	2001/05/22 21:54:42	1.17
--- qtsupport.py	2001/08/23 13:50:27	1.18
***************
*** 10,18 ****
  # Declarations that change for each manager
  MACHEADERFILE = 'Movies.h'		# The Apple header file
! MODNAME = 'Qt'				# The name of the module
  OBJECTNAME = 'Movie'			# 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 = "Movie"		# The C type used to represent them
  OBJECTPREFIX = MODPREFIX + 'Obj'	# The prefix for object methods
--- 10,18 ----
  # Declarations that change for each manager
  MACHEADERFILE = 'Movies.h'		# The Apple header file
! MODNAME = '_Qt'				# The name of the module
  OBJECTNAME = 'Movie'			# The basic name of the objects used here
  
  # The following is *usually* unchanged but may still require tuning
! MODPREFIX = 'Qt'			# The prefix for module-wide routines
  OBJECTTYPE = "Movie"		# The C type used to represent them
  OBJECTPREFIX = MODPREFIX + 'Obj'	# The prefix for object methods