diff options
author | Just van Rossum <just@letterror.com> | 2003-05-24 20:14:24 +0000 |
---|---|---|
committer | Just van Rossum <just@letterror.com> | 2003-05-24 20:14:24 +0000 |
commit | 0ed39577ddcc7dadb642b316eb90e91b60bacdcc (patch) | |
tree | 9c0a8114e190c8f5029e2fd92695e138ebb79081 /Mac | |
parent | b98154e4243a8d73f758dfee9a81bbe36ddc05cb (diff) | |
download | cpython-git-0ed39577ddcc7dadb642b316eb90e91b60bacdcc.tar.gz |
modernized ColorPicker somewhat
Diffstat (limited to 'Mac')
-rw-r--r-- | Mac/Modules/ColorPickermodule.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Mac/Modules/ColorPickermodule.c b/Mac/Modules/ColorPickermodule.c index 3878093377..e7d00451df 100644 --- a/Mac/Modules/ColorPickermodule.c +++ b/Mac/Modules/ColorPickermodule.c @@ -21,7 +21,11 @@ PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ +#ifdef WITHOUT_FRAMEWORKS #include <ColorPicker.h> +#else +#include <Carbon/Carbon.h> +#endif #include "Python.h" #include "macglue.h" #include "pymactoolbox.h" |