commit | 29bfea9b766b701c2359a441e32ee97da91734a7 | [log] [tgz] |
---|---|---|
author | Jack Jansen <jack.jansen@cwi.nl> | Mon Apr 27 15:09:36 1998 +0000 |
committer | Jack Jansen <jack.jansen@cwi.nl> | Mon Apr 27 15:09:36 1998 +0000 |
tree | fe59c980ea0c642947979b2f43e144896b765d5a | |
parent | 2d7850f9efd530d3c035511a720205b9689bb081 [diff] [blame] |
Argument type for SetPort was wrong (WindowPtr in stead of GrafPtr).
diff --git a/Mac/Modules/qd/qdedit.py b/Mac/Modules/qd/qdedit.py index ea4d828..d9e4a15 100644 --- a/Mac/Modules/qd/qdedit.py +++ b/Mac/Modules/qd/qdedit.py
@@ -1,5 +1,5 @@ f = Function(void, 'SetPort', - (WindowPtr, 'thePort', InMode), + (GrafPtr, 'thePort', InMode), ) functions.append(f)