FileApplicationNoteBook.st
changeset 6377 5c3a4c5d70cc
parent 6376 2d3996297468
child 6435 a8b5ed32c036
--- a/FileApplicationNoteBook.st	Mon Aug 08 15:26:22 2005 +0200
+++ b/FileApplicationNoteBook.st	Fri Aug 12 16:46:45 2005 +0200
@@ -2333,15 +2333,13 @@
 !
 
 dropEnter:aContext
-
-    | dropedObjects|
+    | dropObjects|
 
     inDropMode := false.
     (aContext dropSource receiver == self) ifTrue:[^ self].
-    dropedObjects := aContext dropObjects.
-
-
-    dropedObjects do:[:aObject| |checkObject checkObjectString|
+    dropObjects := aContext dropObjects.
+
+    dropObjects do:[:aObject| |checkObject checkObjectString|
         aObject isFileObject ifFalse:[^ self].
         checkObject := aObject theObject.
         checkObject isFilename ifFalse:[^ self].
@@ -5548,5 +5546,5 @@
 !FileApplicationNoteBook class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libtool/FileApplicationNoteBook.st,v 1.190 2005-08-08 13:26:22 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/FileApplicationNoteBook.st,v 1.191 2005-08-12 14:46:38 cg Exp $'
 ! !