DataSetColumn.st
changeset 3920 4a1933e73efd
parent 3869 20d5ddff9541
child 3990 a1ed686544e0
--- a/DataSetColumn.st	Sun Jul 25 12:23:43 2010 +0200
+++ b/DataSetColumn.st	Wed Jul 28 20:46:58 2010 +0200
@@ -862,11 +862,15 @@
     type := description type.
     type ~~ #string ifTrue:[
         converter := TypeConverter new perform:type.
-        converter model:value.
-        ^ converter value.
+        ^ converter getBlock value:value.
+"/ cg: the code below is dangerous (tries to addDependent to Integers) !!
+"/        converter model:value.
+"/        ^ converter value.
     ].
 
     ^ value
+
+    "Modified: / 28-07-2010 / 20:42:51 / cg"
 ! !
 
 !DataSetColumn methodsFor:'editing'!
@@ -1323,9 +1327,9 @@
 !DataSetColumn class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libwidg2/DataSetColumn.st,v 1.131 2010-01-14 16:47:54 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libwidg2/DataSetColumn.st,v 1.132 2010-07-28 18:46:58 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libwidg2/DataSetColumn.st,v 1.131 2010-01-14 16:47:54 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libwidg2/DataSetColumn.st,v 1.132 2010-07-28 18:46:58 cg Exp $'
 ! !