diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 2001-06-20 21:44:38 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 2001-06-20 21:44:38 (GMT) |
commit | 2942131dac32b197da5a604906c322b971234a55 (patch) | |
tree | f30caa6e49484677aeddb59952d6e17e7944138b | |
parent | 490d34dbad1c3207f8ce5543cb7139007b073771 (diff) | |
download | cpython-2942131dac32b197da5a604906c322b971234a55.zip cpython-2942131dac32b197da5a604906c322b971234a55.tar.gz cpython-2942131dac32b197da5a604906c322b971234a55.tar.bz2 |
Got rid of a silly #if.
-rw-r--r-- | Mac/Modules/ae/aesupport.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Mac/Modules/ae/aesupport.py b/Mac/Modules/ae/aesupport.py index eacbee7..a7351e2 100644 --- a/Mac/Modules/ae/aesupport.py +++ b/Mac/Modules/ae/aesupport.py @@ -155,7 +155,7 @@ GenericEventHandler(const AppleEvent *request, AppleEvent *reply, refcontype ref initstuff = initstuff + """ upp_AEIdleProc = NewAEIdleUPP(AEIdleProc); -#if UNIVERSAL_INTERFACES_VERSION >= 0x0340 +#if UNIVERSAL_INTERFACES_VERSION >= 0x03400 upp_GenericEventHandler = NewAEEventHandlerUPP(&GenericEventHandler); #else upp_GenericEventHandler = NewAEEventHandlerUPP(GenericEventHandler); |