Merge jv
authorMerge Script
Fri, 09 Sep 2016 07:06:20 +0200
branchjv
changeset 5846 134a2c6a02c1
parent 5844 4ebd8fb3feda (current diff)
parent 5845 40de1cfd6e16 (diff)
child 5849 878eeb6b2cd3
Merge
TextView.st
--- a/TextView.st	Thu Sep 08 06:46:20 2016 +0200
+++ b/TextView.st	Fri Sep 09 07:06:20 2016 +0200
@@ -185,17 +185,17 @@
     (to avoid reading all lines, when usig a virtualArray)
                                                         [exBegin]
         |a m|
-        
-        a := VirtualArray new 
+
+        a := VirtualArray new
                 setSize:100000000;
-                generator:[:lNr | Transcript show:'called for '; showCR:lNr. 
+                generator:[:lNr | Transcript show:'called for '; showCR:lNr.
                                   'this is line: ',lNr printString ].
-        m := a asValue.        
-        (ScrollableView forView:TextView new) 
-            expandTabsWhenUpdating:false; 
+        m := a asValue.
+        (ScrollableView forView:TextView new)
+            expandTabsWhenUpdating:false;
             checkLineEndConventionWhenUpdating:false;
-            model:m; 
-            open; inspect.         
+            model:m;
+            open; inspect.
                                                         [exEnd]
 
 "