UIGalleryView.st
changeset 1142 f5b47cc3e563
parent 1140 d0dee47ac385
child 1337 546e42b47b41
--- a/UIGalleryView.st	Mon Jun 07 17:47:20 1999 +0200
+++ b/UIGalleryView.st	Fri Jun 11 19:19:14 1999 +0200
@@ -206,7 +206,7 @@
 
 !UIGalleryView methodsFor:'change & update'!
 
-selectionChanged
+selectionHasChanged
     "selection changed
     "
     |specification selector selection application|
@@ -216,7 +216,6 @@
     minorKeysHolder notNil ifTrue:[
         minorKeys := minorKeysHolder value.
     ].
-
     (selection notNil and:[minorKeys size >= selection]) ifTrue:[
         selector := minorKeys at:selection.
 
@@ -239,7 +238,7 @@
 !
 
 update
-    self selectionChanged.
+    self selectionHasChanged.
 !
 
 update:something with:aParameter from:changedObject
@@ -269,7 +268,7 @@
 
     super initialize.
 
-    self action:[:something| self selectionChanged ].
+    self action:[:something| self selectionHasChanged ].
 
 ! !