diff options
author | Just van Rossum <just@letterror.com> | 2003-05-24 20:14:24 (GMT) |
---|---|---|
committer | Just van Rossum <just@letterror.com> | 2003-05-24 20:14:24 (GMT) |
commit | 0ed39577ddcc7dadb642b316eb90e91b60bacdcc (patch) | |
tree | 9c0a8114e190c8f5029e2fd92695e138ebb79081 /Mac/Modules | |
parent | b98154e4243a8d73f758dfee9a81bbe36ddc05cb (diff) | |
download | cpython-0ed39577ddcc7dadb642b316eb90e91b60bacdcc.zip cpython-0ed39577ddcc7dadb642b316eb90e91b60bacdcc.tar.gz cpython-0ed39577ddcc7dadb642b316eb90e91b60bacdcc.tar.bz2 |
modernized ColorPicker somewhat
Diffstat (limited to 'Mac/Modules')
-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 3878093..e7d0045 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" |