Changeset 325

Show
Ignore:
Timestamp:
04/28/07 21:36:12 (2 years ago)
Author:
keinfarbton
Message:

windows test with dmd 1.014

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/README

    r323 r325  
    2222 
    2323    == Linux == 
    24     + DMD 1.013 
     24    + DMD 1.014 
    2525    + DSSS 0.63 
    2626    + Tango trunk r2110 
     
    2828 
    2929    == Windows == 
    30     + DMD 1.013 
     30    + DMD 1.014 
    3131    + DSSS 0.64 
    3232    + Tango trunk r2110 
     
    6565    ./paint 
    6666 
     67General: 
     68Building a windows app with SWT needs the link option: 
     69    -L/SUBSYSTEM:windows:5 
     70    .. or .. 
     71    -L/SUBSYSTEM:console:5 
     72some widgets show misbehaviour, if this option was not applied. 
    6773 
    68  
  • trunk/dejavu/src/dejavu/lang/String.d

    r307 r325  
    44import dejavu.lang.CharSequence; 
    55import dejavu.lang.JArray; 
     6import dejavu.lang.JObject; 
    67import dejavu.lang.JObjectImpl; 
    78import dejavu.lang.String; 
     
    561562    } 
    562563 
     564    public static JArrayJObject fromUtf8Array( char[][] aValue ){ 
     565        JObject[] arr; 
     566        arr.length = aValue.length; 
     567        foreach( uint idx, char[] val; aValue ){ 
     568            arr[idx] = String.fromUtf8( val ); 
     569        } 
     570        return JArrayJObject.createSimpleFromLiteral( String.classinfo, 1, arr ); 
     571    } 
    563572    public static String fromUtf8( char[] aValue ){ 
    564573        return new String( tango.text.convert.Utf.toUtf16( aValue )); 
  • trunk/swt-3.2.1-examples/dsss.conf

    r306 r325  
    1010    buildflags+=-ll"swt-gdip-win32-3235" 
    1111    buildflags+=-ll"swt-win32-3235" 
     12    buildflags+=-L/SUBSYSTEM:console:5 
    1213} 
    1314version( linux ){