diff dwtx/core/internal/runtime/PrintStackUtil.d @ 197:0ea0c9f9008f

Remove tango deprecation warnings.
author Frank Benoit <benoit@tionex.de>
date Wed, 18 Feb 2009 19:35:22 +0100
parents 4878bef4a38e
children
line wrap: on
line diff
--- a/dwtx/core/internal/runtime/PrintStackUtil.d	Tue Feb 10 17:12:01 2009 +0100
+++ b/dwtx/core/internal/runtime/PrintStackUtil.d	Wed Feb 18 19:35:22 2009 +0100
@@ -13,12 +13,12 @@
 module dwtx.core.internal.runtime.PrintStackUtil;
 
 import dwtx.core.runtime.IStatus;
-import tango.io.Print;
+import tango.io.stream.Format;
 import dwt.dwthelper.utils;
 
 public class PrintStackUtil {
 
-    static public void printChildren(IStatus status, Print!(char) output) {
+    static public void printChildren(IStatus status, FormatOutput!(char) output) {
         IStatus[] children = status.getChildren();
         if (children is null || children.length is 0)
             return;
@@ -31,7 +31,7 @@
         }
     }
 
-//     static public void printChildren(IStatus status, Print!(char) output) {
+//     static public void printChildren(IStatus status, FormatOutput!(char) output) {
 //         IStatus[] children = status.getChildren();
 //         if (children is null || children.length is 0)
 //             return;