diff options
Diffstat (limited to 'Mac/Modules/help/helpscan.py')
-rw-r--r-- | Mac/Modules/help/helpscan.py | 19 |
1 files changed, 13 insertions, 6 deletions
diff --git a/Mac/Modules/help/helpscan.py b/Mac/Modules/help/helpscan.py index 67a7e53..32a759a 100644 --- a/Mac/Modules/help/helpscan.py +++ b/Mac/Modules/help/helpscan.py @@ -6,7 +6,7 @@ from bgenlocations import TOOLBOXDIR, BGENDIR sys.path.append(BGENDIR) from scantools import Scanner -LONG = "Balloons" +LONG = "MacHelp" SHORT = "help" OBJECT = "NOTUSED" @@ -45,15 +45,22 @@ class MyScanner(Scanner): def makeblacklisttypes(self): return [ - "TipFunctionUPP", - "HMMessageRecord", - "HMMessageRecord_ptr", +## "TipFunctionUPP", +## "HMMessageRecord", +## "HMMessageRecord_ptr", + "HMWindowContentUPP", + "HMMenuTitleContentUPP", + "HMControlContentUPP", + "HMMenuItemContentUPP", + # For the moment + "HMHelpContentRec", + "HMHelpContentRec_ptr", ] def makerepairinstructions(self): return [ - ([("WindowPtr", "*", "OutMode")], - [("ExistingWindowPtr", "*", "*")]), +## ([("WindowPtr", "*", "OutMode")], +## [("ExistingWindowPtr", "*", "*")]), ] if __name__ == "__main__": |