DropSource.st
changeset 1679 cbff43d2fe2a
parent 873 c5cd8f56dc6e
child 1731 643fd1153e5d
--- a/DropSource.st	Tue Dec 10 12:01:29 2002 +0100
+++ b/DropSource.st	Tue Dec 10 12:03:11 2002 +0100
@@ -11,6 +11,8 @@
 "
 
 
+"{ Package: 'stx:libview2' }"
+
 Object subclass:#DropSource
 	instanceVariableNames:'receiver argument feedBackSelector dropObjectSelector
 		displayObjectSelector startDragSelector'
@@ -145,14 +147,16 @@
 receiver
     "return the value of the instance variable 'receiver' (automatically generated)"
 
-    ^ receiver!
+    ^ receiver
+!
 
 receiver:something
     "set the value of the instance variable 'receiver' (automatically generated)"
 
-    receiver := something.! !
+    receiver := something.
+! !
 
-!DropSource methodsFor:'accessing selectors'!
+!DropSource methodsFor:'accessing-selectors'!
 
 displayObjectSelector
     "selector to access the displayObjects; a sequence of String, Text, Icon or Image,
@@ -266,5 +270,5 @@
 !DropSource class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libview2/DropSource.st,v 1.1 1998-03-30 11:59:53 ca Exp $'
+    ^ '$Header: /cvs/stx/stx/libview2/DropSource.st,v 1.2 2002-12-10 11:03:11 cg Exp $'
 ! !