Tools__TextDiffTool.st
branchjv
changeset 12269 79f87eee62e5
parent 12209 44647f143fd0
child 12318 1dda95be3d40
--- a/Tools__TextDiffTool.st	Thu Jul 26 17:09:41 2012 +0100
+++ b/Tools__TextDiffTool.st	Thu Jul 26 19:46:57 2012 +0100
@@ -350,7 +350,7 @@
         #labelHolder
 
         #labelAHolder
-        #labelBHolde
+        #labelBHolder
         #labelCHolder
 
         #textAHolder
@@ -770,13 +770,20 @@
 postBuildDiffView:aScrollableView
 
     diffView := aScrollableView.
-    diffView notNil ifTrue:[
-        diffView languageHolder: self languageHolder.
-        diffView classHolder: self classHolder.
+    self setupCodeView: aScrollableView.
+
+    "Created: / 30-06-2011 / 20:55:23 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+!
 
+setupCodeView: codeView2
+    codeView2 notNil ifTrue:[
+        codeView2
+            languageHolder: self languageHolder;
+            classHolder: self classHolder;
+            modeHolder: self codeAspectHolder
     ].
 
-    "Created: / 30-06-2011 / 20:55:23 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+    "Created: / 26-07-2012 / 19:13:55 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 ! !
 
 !TextDiffTool methodsFor:'initialization'!
@@ -812,5 +819,5 @@
 !TextDiffTool class methodsFor:'documentation'!
 
 version_SVN
-    ^ '$Id: Tools__TextDiffTool.st 7956 2012-03-27 16:39:28Z vranyj1 $'
+    ^ '$Id: Tools__TextDiffTool.st 8027 2012-07-26 18:46:57Z vranyj1 $'
 ! !