diff options
Diffstat (limited to 'Mac/Modules/cf/cfscan.py')
| -rw-r--r-- | Mac/Modules/cf/cfscan.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Mac/Modules/cf/cfscan.py b/Mac/Modules/cf/cfscan.py index ebaeed8..85178e4 100644 --- a/Mac/Modules/cf/cfscan.py +++ b/Mac/Modules/cf/cfscan.py @@ -31,7 +31,7 @@ def main(): "CFDictionary.h", ## "CFNumber.h", ## "CFPlugIn.h", -## "CFPreferences.h", + "CFPreferences.h", "CFPropertyList.h", ## "CFSet.h", "CFString.h", @@ -54,7 +54,7 @@ class MyScanner(Scanner_OSX): def destination(self, type, name, arglist): classname = "Function" listname = "functions" - if arglist: + if arglist and name[:13] != 'CFPreferences': t, n, m = arglist[0] if t in OBJECTS and m == "InMode": classname = "Method" |
