summaryrefslogtreecommitdiffstats
path: root/Mac/Modules/qd/qdgen.py
diff options
context:
space:
mode:
authorJack Jansen <jack.jansen@cwi.nl>1996-01-08 23:47:31 (GMT)
committerJack Jansen <jack.jansen@cwi.nl>1996-01-08 23:47:31 (GMT)
commit1d8ede7bbee1d240df2e60b814346dd045215e82 (patch)
tree3d4e78543b63895201acee614669a55a77b84bdc /Mac/Modules/qd/qdgen.py
parent04a02e7e11e5f7fcbcfa1f65b396c359256f097b (diff)
downloadcpython-1d8ede7bbee1d240df2e60b814346dd045215e82.zip
cpython-1d8ede7bbee1d240df2e60b814346dd045215e82.tar.gz
cpython-1d8ede7bbee1d240df2e60b814346dd045215e82.tar.bz2
Fixed GetPen and SetPt arguments
Diffstat (limited to 'Mac/Modules/qd/qdgen.py')
-rw-r--r--Mac/Modules/qd/qdgen.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Mac/Modules/qd/qdgen.py b/Mac/Modules/qd/qdgen.py
index 7ea15fe..df3ad98 100644
--- a/Mac/Modules/qd/qdgen.py
+++ b/Mac/Modules/qd/qdgen.py
@@ -88,7 +88,7 @@ f = Function(void, 'ShowPen',
functions.append(f)
f = Function(void, 'GetPen',
- (Point, 'pt', InOutMode),
+ (Point, 'pt', OutMode),
)
functions.append(f)
@@ -570,7 +570,7 @@ f = Function(void, 'FillPoly',
functions.append(f)
f = Function(void, 'SetPt',
- (Point, 'pt', InOutMode),
+ (Point, 'pt', OutMode),
(short, 'h', InMode),
(short, 'v', InMode),
)