diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 2003-06-16 13:56:05 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 2003-06-16 13:56:05 (GMT) |
commit | e748f0358fd7d7ed59ae892889e7e88694d0bf02 (patch) | |
tree | 9d2fb986b2d9cbd10e3beae4ad47b05b8926d745 /Mac/Modules | |
parent | 7327918631eb7a67598a7d76f3bd0d3dbcdd1fd5 (diff) | |
download | cpython-e748f0358fd7d7ed59ae892889e7e88694d0bf02.zip cpython-e748f0358fd7d7ed59ae892889e7e88694d0bf02.tar.gz cpython-e748f0358fd7d7ed59ae892889e7e88694d0bf02.tar.bz2 |
This wasn't ansified. Fixed.
Diffstat (limited to 'Mac/Modules')
-rw-r--r-- | Mac/Modules/ColorPickermodule.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/Mac/Modules/ColorPickermodule.c b/Mac/Modules/ColorPickermodule.c index e7d0045..12a632f 100644 --- a/Mac/Modules/ColorPickermodule.c +++ b/Mac/Modules/ColorPickermodule.c @@ -37,9 +37,7 @@ static char cp_GetColor__doc__[] = ; static PyObject * -cp_GetColor(self, args) - PyObject *self; /* Not used */ - PyObject *args; +cp_GetColor(PyObject *self, PyObject *args) { RGBColor inColor, outColor; Boolean ok; @@ -68,9 +66,7 @@ static char cp_module_documentation[] = "" ; -void initColorPicker(); - -void initColorPicker() +void initColorPicker(void) { PyObject *m; |