diff org.eclipse.swt.win32.win32.x86/src/org/eclipse/swt/custom/CTabFolderEvent.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 d46287db17ed
line wrap: on
line diff
--- a/org.eclipse.swt.win32.win32.x86/src/org/eclipse/swt/custom/CTabFolderEvent.d	Thu Mar 05 15:12:35 2009 +0100
+++ b/org.eclipse.swt.win32.win32.x86/src/org/eclipse/swt/custom/CTabFolderEvent.d	Mon Mar 09 14:26:40 2009 +0100
@@ -19,7 +19,6 @@
 import org.eclipse.swt.events.TypedEvent;
 import org.eclipse.swt.widgets.Widget;
 
-import tango.util.Convert;
 
 /**
  * This event is sent when an event is generated in the CTabFolder.
@@ -88,12 +87,12 @@
 public override String toString() {
     String string = super.toString ();
     return string[0.. $ - 1] // remove trailing '}'
-        ~ " item=" ~ to!(String)(item)
-        ~ " doit=" ~ to!(String)(doit)
-        ~ " x=" ~ to!(String)(x)
-        ~ " y=" ~ to!(String)(y)
-        ~ " width=" ~ to!(String)(width)
-        ~ " height=" ~ to!(String)(height)
+        ~ " item=" ~ String_valueOf(item)
+        ~ " doit=" ~ String_valueOf(doit)
+        ~ " x=" ~ String_valueOf(x)
+        ~ " y=" ~ String_valueOf(y)
+        ~ " width=" ~ String_valueOf(width)
+        ~ " height=" ~ String_valueOf(height)
         ~ "}";
 }
 }