[Python-checkins] python/dist/src/Mac/Modules ColorPickermodule.c,1.4,1.5

jackjansen@users.sourceforge.net jackjansen@users.sourceforge.net
Mon, 16 Jun 2003 06:56:07 -0700


Update of /cvsroot/python/python/dist/src/Mac/Modules
In directory sc8-pr-cvs1:/tmp/cvs-serv23170/Mac/Modules

Modified Files:
	ColorPickermodule.c 
Log Message:
This wasn't ansified. Fixed.


Index: ColorPickermodule.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Mac/Modules/ColorPickermodule.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** ColorPickermodule.c	24 May 2003 20:14:24 -0000	1.4
--- ColorPickermodule.c	16 Jun 2003 13:56:05 -0000	1.5
***************
*** 38,44 ****
  
  static PyObject *
! cp_GetColor(self, args)
! 	PyObject *self;	/* Not used */
! 	PyObject *args;
  {
  	RGBColor inColor, outColor;
--- 38,42 ----
  
  static PyObject *
! cp_GetColor(PyObject *self, PyObject *args)
  {
  	RGBColor inColor, outColor;
***************
*** 69,75 ****
  ;
  
! void initColorPicker();
! 
! void initColorPicker()
  {
  	PyObject *m;
--- 67,71 ----
  ;
  
! void initColorPicker(void)
  {
  	PyObject *m;