comparison dwt/internal/Platform.d @ 238:380bad9f6852

reverted char[] to String
author Frank Benoit <benoit@tionex.de>
date Mon, 05 May 2008 00:42:55 +0200
parents 0f12f6bb9739
children
comparison
equal deleted inserted replaced
237:98b80b00af79 238:380bad9f6852
14 * Port to the D programming language: 14 * Port to the D programming language:
15 * Frank Benoit <benoit@tionex.de> 15 * Frank Benoit <benoit@tionex.de>
16 *******************************************************************************/ 16 *******************************************************************************/
17 module dwt.internal.Platform; 17 module dwt.internal.Platform;
18 18
19 import dwt.dwthelper.utils;
20
19 import dwt.internal.Lock; 21 import dwt.internal.Lock;
20 22
21 public class Platform { 23 public class Platform {
22 public static const char[] PLATFORM = "gtk"; //$NON-NLS-1$ 24 public static const String PLATFORM = "gtk"; //$NON-NLS-1$
23 public static const Lock lock; 25 public static const Lock lock;
24 static this() { 26 static this() {
25 lock = new Lock(); 27 lock = new Lock();
26 } 28 }
27 } 29 }