*** empty log message ***
authorClaus Gittinger <cg@exept.de>
Fri, 12 Aug 2005 16:46:45 +0200
changeset 6377 5c3a4c5d70cc
parent 6376 2d3996297468
child 6378 d29af7307c7c
*** empty log message ***
AbstractDirectoryBrowser.st
FileApplicationNoteBook.st
--- a/AbstractDirectoryBrowser.st	Mon Aug 08 15:26:22 2005 +0200
+++ b/AbstractDirectoryBrowser.st	Fri Aug 12 16:46:45 2005 +0200
@@ -90,16 +90,15 @@
 !
 
 dropEnter:aContext
-
-    |dropedObjects|
+    |dropObjects|
 
     self dropTargetItemChangedTo:nil in:aContext.
     inDropMode := false.
 
 "/    self directory isNil ifTrue:[^ self].
-    dropedObjects := aContext dropObjects.
+    dropObjects := aContext dropObjects.
 
-    dropedObjects do:[:aObject| 
+    dropObjects do:[:aObject| 
         |checkObject checkObjectString|
 
         aObject isFileObject ifFalse:[^ self].
@@ -212,5 +211,5 @@
 !AbstractDirectoryBrowser class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libtool/AbstractDirectoryBrowser.st,v 1.16 2005-04-27 10:21:46 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/AbstractDirectoryBrowser.st,v 1.17 2005-08-12 14:46:45 cg Exp $'
 ! !
--- 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 $'
 ! !