DSVColumnView.st
changeset 3672 ff861e62db1d
parent 3604 a664d6246c21
child 3676 ba60c90f1cc3
--- a/DSVColumnView.st	Mon Mar 23 08:23:06 2009 +0100
+++ b/DSVColumnView.st	Mon Mar 23 10:57:57 2009 +0100
@@ -1150,7 +1150,7 @@
     
     |newSepSize|
 
-    newSepSize := aBool ifTrue:2 ifFalse:1.
+    newSepSize := aBool ifTrue:[2] ifFalse:[1].
     newSepSize ~~ separatorSize ifTrue:[
         separatorSize := newSepSize.
         realized ifTrue:[
@@ -1831,7 +1831,7 @@
         ].
         aColNr ~~ 0 ifTrue:[                                    "/ redraw column in row
             col := (self columnDescriptorAt:aColNr).
-            w := col isNil ifTrue:0 ifFalse:[col width].
+            w := col isNil ifTrue:[0] ifFalse:[col width].
             x := self xVisibleOfColNr:aColNr.
 
             x < margin ifTrue:[
@@ -4558,5 +4558,5 @@
 !DSVColumnView class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libwidg2/DSVColumnView.st,v 1.245 2008-12-07 22:28:50 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libwidg2/DSVColumnView.st,v 1.246 2009-03-23 09:57:57 cg Exp $'
 ! !