Added CFPreferences support. Added these as functions, not methods, which seemed counter-intuitive.
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 @@
"CFDictionary.h",
## "CFNumber.h",
## "CFPlugIn.h",
-## "CFPreferences.h",
+ "CFPreferences.h",
"CFPropertyList.h",
## "CFSet.h",
"CFString.h",
@@ -54,7 +54,7 @@
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"