# HG changeset patch # User Frank Benoit # Date 1221415100 -7200 # Node ID 8d53428f9be0cdf2ff3d9c50f90509d41ee4fbc2 # Parent 10de361de572c8e8be19fe2dd5ddf34bbd0daab9 Tango breaking change for new package tango.io.device diff -r 10de361de572 -r 8d53428f9be0 dwt/dwthelper/FileInputStream.d --- a/dwt/dwthelper/FileInputStream.d Tue Sep 09 06:35:22 2008 +0200 +++ b/dwt/dwthelper/FileInputStream.d Sun Sep 14 19:58:20 2008 +0200 @@ -7,7 +7,11 @@ import dwt.dwthelper.File; import dwt.dwthelper.InputStream; +version(TANGOSVN){ +import tango.io.device.FileConduit; +} else { import tango.io.FileConduit; +} import tango.io.protocol.Reader; import tango.core.Exception; import tango.text.convert.Format; diff -r 10de361de572 -r 8d53428f9be0 dwt/dwthelper/FileOutputStream.d --- a/dwt/dwthelper/FileOutputStream.d Tue Sep 09 06:35:22 2008 +0200 +++ b/dwt/dwthelper/FileOutputStream.d Sun Sep 14 19:58:20 2008 +0200 @@ -8,7 +8,11 @@ import dwt.dwthelper.utils; +version(TANGOSVN){ +import tango.io.device.FileConduit; +} else { import tango.io.FileConduit; +} public class FileOutputStream : dwt.dwthelper.OutputStream.OutputStream { diff -r 10de361de572 -r 8d53428f9be0 dwt/dwthelper/InflaterInputStream.d --- a/dwt/dwthelper/InflaterInputStream.d Tue Sep 09 06:35:22 2008 +0200 +++ b/dwt/dwthelper/InflaterInputStream.d Sun Sep 14 19:58:20 2008 +0200 @@ -12,7 +12,11 @@ pragma(link,"zlib"); } } -import tango.io.Conduit; +version(TANGOSVN){ + import tango.io.device.Conduit; +} else { + import tango.io.Conduit; +} class InputStreamWrapper : tango.io.model.IConduit.InputStream {