#OTHER by mawalch
authormawalch
Thu, 08 Sep 2016 15:47:10 +0200
changeset 5845 40de1cfd6e16
parent 5843 9424b22fcb80
child 5846 134a2c6a02c1
child 5847 8dadbf008f64
#OTHER by mawalch class: TextView comment/format in: #examples
TextView.st
--- a/TextView.st	Wed Sep 07 15:04:37 2016 +0200
+++ b/TextView.st	Thu Sep 08 15:47:10 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]
 
 "