UseViewScroller
authorClaus Gittinger <cg@exept.de>
Tue, 11 Dec 2007 16:05:20 +0100
changeset 2215 b0c8d7acc690
parent 2214 c31fd43cbac3
child 2216 83fa306392ad
UseViewScroller
UIObjectView.st
--- a/UIObjectView.st	Tue Dec 11 16:05:09 2007 +0100
+++ b/UIObjectView.st	Tue Dec 11 16:05:20 2007 +0100
@@ -1258,10 +1258,10 @@
     self halt.
 !
 
-selection:something
-    "change selection to something
-    "
-    self select:something
+selection:newSelection
+    "change selection to newSelection"
+
+    self select:newSelection
 !
 
 selectionDo:aBlock
@@ -1371,12 +1371,12 @@
 
 !UIObjectView methodsFor:'selections basic'!
 
-setSelection:aNewSelection withRedraw:doRedraw
-    "set a new selection without change notifications
-    "
+setSelection:newSelection withRedraw:doRedraw
+    "set a new selection without change notifications"
+
     | sel |
 
-    (sel := aNewSelection) == self ifTrue:[
+    (sel := newSelection) == self ifTrue:[
         sel := nil
     ].