diff org.eclipse.swt.win32.win32.x86/src/org/eclipse/swt/internal/BidiUtil.d @ 9:950d84783eac

Removing direct tango deps.
author Frank Benoit <benoit@tionex.de>
date Mon, 09 Mar 2009 14:26:40 +0100
parents 6dd524f61e62
children 0ecb2b338560
line wrap: on
line diff
--- a/org.eclipse.swt.win32.win32.x86/src/org/eclipse/swt/internal/BidiUtil.d	Thu Mar 05 15:12:35 2009 +0100
+++ b/org.eclipse.swt.win32.win32.x86/src/org/eclipse/swt/internal/BidiUtil.d	Mon Mar 09 14:26:40 2009 +0100
@@ -18,7 +18,6 @@
 import org.eclipse.swt.internal.win32.OS;
 
 import org.eclipse.swt.widgets.Control;
-import tango.util.Convert;
 import java.lang.all;
 import java.lang.Runnable;
 
@@ -468,7 +467,7 @@
     if (isBidiPlatform_ is 1) return true;
     // need to look at system code page for NT & 98 platforms since EnumSystemLanguageGroups is
     // not supported for these platforms
-    String codePage = to!(String)(OS.GetACP());
+    String codePage = String_valueOf(OS.GetACP());
     if (CD_PG_ARABIC==/*eq*/codePage || CD_PG_HEBREW==/*eq*/codePage) {
         isBidiPlatform_ = 1;
     }