summaryrefslogtreecommitdiff
path: root/Mac/Modules/qt/qtscan.py
diff options
context:
space:
mode:
authorJack Jansen <jack.jansen@cwi.nl>2000-03-03 17:06:13 +0000
committerJack Jansen <jack.jansen@cwi.nl>2000-03-03 17:06:13 +0000
commit1b7a70fa52a56d016b8b2f3699a407bb356a9c59 (patch)
tree1f432329730609b8faf907bcf7f89b46b2d32fdc /Mac/Modules/qt/qtscan.py
parent6dc8ce9108a051ccf3337e11d5dfdcc011c325e9 (diff)
downloadcpython-git-1b7a70fa52a56d016b8b2f3699a407bb356a9c59.tar.gz
Fixed parameters to a few time and timebase calls: InOut parameters were
inadvertantly seen as out-only.
Diffstat (limited to 'Mac/Modules/qt/qtscan.py')
-rw-r--r--Mac/Modules/qt/qtscan.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/Mac/Modules/qt/qtscan.py b/Mac/Modules/qt/qtscan.py
index ce79380e00..5f351950e2 100644
--- a/Mac/Modules/qt/qtscan.py
+++ b/Mac/Modules/qt/qtscan.py
@@ -110,6 +110,14 @@ class MyScanner(Scanner):
# MCDoAction and more
([('void', '*', 'OutMode')], [('mcactionparams', '*', 'InMode')]),
+ # SetTimeBaseZero. Does not handle NULLs, unfortunately
+ ([('TimeRecord', 'zero', 'OutMode')], [('TimeRecord', 'zero', 'InMode')]),
+
+ # ConvertTime and ConvertTimeScale
+ ([('TimeRecord', 'inout', 'OutMode')], [('TimeRecord', 'inout', 'InOutMode')]),
+
+ # AddTime and SubtractTime
+ ([('TimeRecord', 'dst', 'OutMode')], [('TimeRecord', 'dst', 'InOutMode')]),
]
if __name__ == "__main__":