diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 1996-01-08 23:47:31 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 1996-01-08 23:47:31 (GMT) |
commit | 1d8ede7bbee1d240df2e60b814346dd045215e82 (patch) | |
tree | 3d4e78543b63895201acee614669a55a77b84bdc /Mac/Modules/qd/qdgen.py | |
parent | 04a02e7e11e5f7fcbcfa1f65b396c359256f097b (diff) | |
download | cpython-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.py | 4 |
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), ) |