Changeset 737

Show
Ignore:
Timestamp:
2008-01-12 22:40:58 (1 year ago)
Author:
MaierMan
Message:

use AUTF8String as per http://developer.mozilla.org/en/docs/IDL_interface_rules

Files:

Legend:

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

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