diff dwt/dwthelper/utils.d @ 273:8632408a70aa

Minimal adjustement for draw2d
author Frank Benoit <benoit@tionex.de>
date Sun, 03 Aug 2008 02:21:43 +0200
parents a63e2cd5485e
children f18872e0f232
line wrap: on
line diff
--- 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 );
 }
+