Changeset 238:380bad9f6852 for dwt/dwthelper/System.d
- Timestamp:
- 05/04/08 18:42:55 (4 years ago)
- Files:
-
- dwt/dwthelper/System.d (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
dwt/dwthelper/System.d
r219 r238 3 3 */ 4 4 module dwt.dwthelper.System; 5 6 import dwt.dwthelper.utils; 5 7 6 8 import tango.core.Exception; … … 116 118 alias SimpleType!(ubyte[]).arraycopy arraycopy; 117 119 alias SimpleType!(ulong[]).arraycopy arraycopy; 118 alias SimpleType!( char[]).arraycopy arraycopy;120 alias SimpleType!(String).arraycopy arraycopy; 119 121 alias SimpleType!(wchar[]).arraycopy arraycopy; 120 122 alias SimpleType!(Object[]).arraycopy arraycopy; … … 136 138 } 137 139 138 public static char[] getProperty( char[]key ){140 public static String getProperty( String key ){ 139 141 switch( key ){ 140 142 case "os.name": return "linux";
