Changeset 250:66441b183ff5

Show
Ignore:
Timestamp:
05/24/08 02:34:19 (4 months ago)
Author:
Frank Benoit <benoit@tionex.de>
branch:
default
Message:

Additions for forms

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • dwt/dwthelper/utils.d

    r249 r250  
    121121class Integer : ValueWrapperT!(int) { 
    122122 
    123     public static int MIN_VALUE = 0x80000000; 
    124     public static int MAX_VALUE = 0x7fffffff; 
    125     public static int SIZE = 32; 
     123    public static const int MIN_VALUE = 0x80000000; 
     124    public static const int MAX_VALUE = 0x7fffffff; 
     125    public static const int SIZE = 32; 
    126126 
    127127    public this ( int value ){ 
     
    594594    return tango.text.Unicode.toFold(src) < tango.text.Unicode.toFold(other); 
    595595} 
     596public int compareTo( String src, String other ){ 
     597    return src < other; 
     598} 
    596599 
    597600public bool startsWith( String src, String pattern ){