Use #query instead of #raise when invoking QuerySignals
authorStefan Vogel <sv@exept.de>
Fri, 19 Mar 1999 08:26:32 +0100
changeset 1061 7400e3e3daf6
parent 1060 0332a41de5c5
child 1062 15184a3a00e1
Use #query instead of #raise when invoking QuerySignals
UISelectionPanel.st
--- a/UISelectionPanel.st	Fri Mar 19 08:25:25 1999 +0100
+++ b/UISelectionPanel.st	Fri Mar 19 08:26:32 1999 +0100
@@ -1560,7 +1560,7 @@
 
     |spc top|
 
-    top := DragAndDropManager dragOriginatorQuerySignal raise topView.
+    top := DragAndDropManager dragOriginatorQuerySignal query topView.
 
     top == aComponent topView ifTrue:[
         spc := self clientSpec value.
@@ -1573,6 +1573,8 @@
         spc := something collect:[:el| el theObject].
     ].
     self paste:spc.
+
+    "Modified: / 18.3.1999 / 18:29:19 / stefan"
 ! !
 
 !UISelectionPanel methodsFor:'queries'!