diff options
author | Just van Rossum <just@letterror.com> | 2002-01-02 15:11:44 (GMT) |
---|---|---|
committer | Just van Rossum <just@letterror.com> | 2002-01-02 15:11:44 (GMT) |
commit | 4f6fe5242464e7930e0bd410bb68ba8b97b8514f (patch) | |
tree | 97efcc0c31c30daa23eabc0608f036edb2ab4772 /Mac/Modules/app/appscan.py | |
parent | 1ca65c07388f29be49a61791f2f252587fa6581c (diff) | |
download | cpython-4f6fe5242464e7930e0bd410bb68ba8b97b8514f.zip cpython-4f6fe5242464e7930e0bd410bb68ba8b97b8514f.tar.gz cpython-4f6fe5242464e7930e0bd410bb68ba8b97b8514f.tar.bz2 |
- Added DrawThemeTextBox()
- fixed GetThemeTextDimensions(): it has an in/out Point arg, not just out.
Diffstat (limited to 'Mac/Modules/app/appscan.py')
-rw-r--r-- | Mac/Modules/app/appscan.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Mac/Modules/app/appscan.py b/Mac/Modules/app/appscan.py index 62409c7..5a7750a 100644 --- a/Mac/Modules/app/appscan.py +++ b/Mac/Modules/app/appscan.py @@ -48,7 +48,6 @@ class MyScanner(Scanner): "appearanceBadTextColorIndexErr", "appearanceThemeHasNoAccents", "appearanceBadCursorIndexErr", - "DrawThemeTextBox", # Funny void* out param ] def makegreylist(self): @@ -58,6 +57,7 @@ class MyScanner(Scanner): 'GetThemeTextShadowOutset', 'GetThemeTextDimensions', 'TruncateThemeText', + 'DrawThemeTextBox', ])] def makeblacklisttypes(self): @@ -80,6 +80,10 @@ class MyScanner(Scanner): def makerepairinstructions(self): return [ + ([("void", 'inContext', "OutMode")], + [("NULL", 'inContext', "InMode")]), + ([("Point", 'ioBounds', "OutMode")], + [("Point", 'ioBounds', "InOutMode")]), ] if __name__ == "__main__": |