summaryrefslogtreecommitdiff
path: root/Mac/Modules/qt/qtscan.py
diff options
context:
space:
mode:
authorJack Jansen <jack.jansen@cwi.nl>2000-07-14 22:37:27 +0000
committerJack Jansen <jack.jansen@cwi.nl>2000-07-14 22:37:27 +0000
commit74a1e63a89cdaad288260600cf77e3a20811f49b (patch)
treefcac57d67ef4a81ecfb8ae462dc3d254e9cf46be /Mac/Modules/qt/qtscan.py
parent2d391f2f397d66e2ac3cadc0b3c3b008a57094bb (diff)
downloadcpython-git-74a1e63a89cdaad288260600cf77e3a20811f49b.tar.gz
Test for TARGET_API_MAC_CARBON with #if in stead of #ifdef.
Diffstat (limited to 'Mac/Modules/qt/qtscan.py')
-rw-r--r--Mac/Modules/qt/qtscan.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Mac/Modules/qt/qtscan.py b/Mac/Modules/qt/qtscan.py
index d57a32d60d..27d76be022 100644
--- a/Mac/Modules/qt/qtscan.py
+++ b/Mac/Modules/qt/qtscan.py
@@ -65,7 +65,7 @@ class MyScanner(Scanner):
def makegreylist(self):
return [
- ('#ifndef TARGET_API_MAC_CARBON', [
+ ('#if !TARGET_API_MAC_CARBON', [
'SpriteMediaGetIndImageProperty', # XXXX Why isn't this in carbon?
'CheckQuickTimeRegistration',
])]