Changeset 737
- Timestamp:
- 2008-01-12 22:40:58 (1 year ago)
- Files:
-
- trunk/components/filterManager.idl (modified) (2 diffs)
- trunk/components/filterManager.xpt (modified) (previous)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/components/filterManager.idl
r586 r737 46 46 [readonly] attribute string id; 47 47 [readonly] attribute boolean defFilter; 48 attribute wstring label;49 attribute wstring test;48 attribute AUTF8String label; 49 attribute AUTF8String test; 50 50 attribute boolean isRegex; 51 51 attribute boolean active; 52 52 attribute unsigned long type; 53 boolean match(in wstring test);53 boolean match(in AUTF8String test); 54 54 void save(); 55 55 void restore(); … … 68 68 dtaIFilter getFilter(in string id); 69 69 70 boolean matchActive(in wstring test, in unsigned long type);70 boolean matchActive(in AUTF8String test, in unsigned long type); 71 71 72 string create(in wstring label, in wstring test, in boolean active, in unsigned long type, in boolean regex);72 string create(in AUTF8String label, in AUTF8String test, in boolean active, in unsigned long type, in boolean regex); 73 73 void remove(in string id); 74 74
