Changeset 273:8632408a70aa

Show
Ignore:
Timestamp:
08/02/08 20:21:43 (4 months ago)
Author:
Frank Benoit <benoit@tionex.de>
branch:
default
Message:

Minimal adjustement for draw2d

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • dwt/dwthelper/ByteArrayOutputStream.d

    r264 r273  
    66public import dwt.dwthelper.OutputStream; 
    77import dwt.dwthelper.utils; 
    8 import tango.io.Buffer; 
    98import tango.io.Buffer; 
    109 
  • dwt/dwthelper/utils.d

    r264 r273  
    231231 
    232232class Double : ValueWrapperT!(double) { 
     233    public static double MAX_VALUE = double.max; 
     234    public static double MIN_VALUE = double.min; 
    233235    this( double value ){ 
    234236        super(value); 
     
    970972    const ImportData getImportData = ImportData( import(name), name ); 
    971973} 
     974