Tools__DiffCodeView2.st
changeset 15279 e15c49676d90
parent 14639 457ed8f2bbde
child 15474 9d8648afebd3
--- a/Tools__DiffCodeView2.st	Fri Feb 13 20:27:24 2015 +0100
+++ b/Tools__DiffCodeView2.st	Fri Feb 13 20:27:53 2015 +0100
@@ -144,17 +144,18 @@
 !DiffCodeView2 methodsFor:'initialization'!
 
 initialize
-
     super initialize.
-    textViews do:
-        [:thisView|
-        thisView diffMode: true.
-        thisView ~= textViews first ifTrue:
-            [thisView showGutterChannel value: false].
-        textViews do:
-            [:otherView|
-            thisView == otherView ifFalse:
-                [thisView synchronizeWith: otherView]]].
+    textViews do:[:thisView | 
+        thisView diffMode:true.
+        thisView ~= textViews first ifTrue:[
+            thisView showGutterChannel value:false
+        ].
+        textViews do:[:otherView | 
+            thisView == otherView ifFalse:[
+                thisView synchronizeWith:otherView
+            ]
+        ]
+    ].
 
     "Created: / 06-04-2010 / 14:15:03 / Jakub <zelenja7@fel.cvut.cz>"
     "Modified: / 23-06-2010 / 19:36:38 / Jan Vrany <jan.vrany@fit.cvut.cz>"
@@ -372,10 +373,10 @@
 !DiffCodeView2 class methodsFor:'documentation'!
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libtool/Tools__DiffCodeView2.st,v 1.9 2014-07-09 20:47:59 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/Tools__DiffCodeView2.st,v 1.10 2015-02-13 19:27:53 cg Exp $'
 !
 
 version_SVN
-    ^ '$Id: Tools__DiffCodeView2.st,v 1.9 2014-07-09 20:47:59 cg Exp $'
+    ^ '$Id: Tools__DiffCodeView2.st,v 1.10 2015-02-13 19:27:53 cg Exp $'
 ! !