Changeset 586

Show
Ignore:
Timestamp:
2007-09-04 19:48:22 (1 year ago)
Author:
MaierMan
Message:

make the filtermanager unicode aware.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/components/filterManager.idl

    r489 r586  
    4646        [readonly] attribute string id; 
    4747        [readonly] attribute boolean defFilter; 
    48         attribute string label; 
    49         attribute string test; 
     48        attribute wstring label; 
     49        attribute wstring test; 
    5050        attribute boolean isRegex; 
    5151        attribute boolean active; 
    5252        attribute unsigned long type; 
    53         boolean match(in string test); 
     53        boolean match(in wstring test); 
    5454        void save(); 
    5555        void restore(); 
     
    6868        dtaIFilter getFilter(in string id); 
    6969         
    70         boolean matchActive(in string test, in unsigned long type); 
     70        boolean matchActive(in wstring test, in unsigned long type); 
    7171         
    72         string create(in string label, in string 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); 
    7373        void remove(in string id); 
    7474