summaryrefslogtreecommitdiffstats
path: root/Mac/Modules/qd/qdedit.py
diff options
context:
space:
mode:
authorJack Jansen <jack.jansen@cwi.nl>1998-04-23 13:21:09 (GMT)
committerJack Jansen <jack.jansen@cwi.nl>1998-04-23 13:21:09 (GMT)
commit7f725e406147125eaeef0958cf9b489660f6eb52 (patch)
treecb4c06dd09b9818e1e189a57e797be4f536c123e /Mac/Modules/qd/qdedit.py
parentbbf4be2c2fee581606bb5fdeadefc8b104bc204f (diff)
downloadcpython-7f725e406147125eaeef0958cf9b489660f6eb52.zip
cpython-7f725e406147125eaeef0958cf9b489660f6eb52.tar.gz
cpython-7f725e406147125eaeef0958cf9b489660f6eb52.tar.bz2
SetPort was missing, and the defs file needs the FOUR_CHAR_CODE define.
Diffstat (limited to 'Mac/Modules/qd/qdedit.py')
-rw-r--r--Mac/Modules/qd/qdedit.py20
1 files changed, 0 insertions, 20 deletions
diff --git a/Mac/Modules/qd/qdedit.py b/Mac/Modules/qd/qdedit.py
index 2242c5a..3139168 100644
--- a/Mac/Modules/qd/qdedit.py
+++ b/Mac/Modules/qd/qdedit.py
@@ -1,28 +1,8 @@
-f = Function(void, 'GlobalToLocal',
- (Point, 'thePoint', InOutMode),
-)
-functions.append(f)
-
-f = Function(void, 'LocalToGlobal',
- (Point, 'thePoint', InOutMode),
-)
-functions.append(f)
-
f = Function(void, 'SetPort',
(WindowPtr, 'thePort', InMode),
)
functions.append(f)
-f = Function(void, 'ClipRect',
- (Rect, 'r', InMode),
-)
-functions.append(f)
-
-f = Function(void, 'EraseRect',
- (Rect, 'r', InMode),
-)
-functions.append(f)
-
f = Function(void, 'OpenDeskAcc',
(Str255, 'name', InMode),
)