Changeset 586
- Timestamp:
- 2007-09-04 19:48:22 (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
r489 r586 46 46 [readonly] attribute string id; 47 47 [readonly] attribute boolean defFilter; 48 attribute string label;49 attribute string test;48 attribute wstring label; 49 attribute wstring test; 50 50 attribute boolean isRegex; 51 51 attribute boolean active; 52 52 attribute unsigned long type; 53 boolean match(in string test);53 boolean match(in wstring test); 54 54 void save(); 55 55 void restore(); … … 68 68 dtaIFilter getFilter(in string id); 69 69 70 boolean matchActive(in string test, in unsigned long type);70 boolean matchActive(in wstring test, in unsigned long type); 71 71 72 string create(in string label, instring test, in boolean active, in unsigned long type, in boolean regex);72 string create(in wstring label, in wstring test, in boolean active, in unsigned long type, in boolean regex); 73 73 void remove(in string id); 74 74
