# HG changeset patch # User Frank Benoit # Date 1217722903 -7200 # Node ID 8632408a70aa24123a5a65f7801799515d4d43fc # Parent 463d461e6e78317088980dea7c579421f5ef9351 Minimal adjustement for draw2d diff -r 463d461e6e78 -r 8632408a70aa dwt/dwthelper/ByteArrayOutputStream.d --- a/dwt/dwthelper/ByteArrayOutputStream.d Fri Aug 01 07:16:10 2008 +0200 +++ b/dwt/dwthelper/ByteArrayOutputStream.d Sun Aug 03 02:21:43 2008 +0200 @@ -6,7 +6,6 @@ public import dwt.dwthelper.OutputStream; import dwt.dwthelper.utils; import tango.io.Buffer; -import tango.io.Buffer; public class ByteArrayOutputStream : dwt.dwthelper.OutputStream.OutputStream { diff -r 463d461e6e78 -r 8632408a70aa dwt/dwthelper/utils.d --- a/dwt/dwthelper/utils.d Fri Aug 01 07:16:10 2008 +0200 +++ b/dwt/dwthelper/utils.d Sun Aug 03 02:21:43 2008 +0200 @@ -230,6 +230,8 @@ alias Integer ValueWrapperInt; class Double : ValueWrapperT!(double) { + public static double MAX_VALUE = double.max; + public static double MIN_VALUE = double.min; this( double value ){ super(value); } @@ -969,3 +971,4 @@ template getImportData(String name ){ const ImportData getImportData = ImportData( import(name), name ); } +