From: Matti Tahvonen Date: Thu, 4 Feb 2010 11:42:23 +0000 (+0000) Subject: fixed callbacks X-Git-Tag: 6.7.0.beta1~1988^2~27 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=e589193a9d4f38e4373db18d74e0708f4ebcbd7c;p=vaadin-framework.git fixed callbacks svn changeset:11134/svn branch:6.3_dd --- diff --git a/src/com/vaadin/terminal/gwt/server/DragAndDropService.java b/src/com/vaadin/terminal/gwt/server/DragAndDropService.java index eafda3c38a..a573fc3272 100644 --- a/src/com/vaadin/terminal/gwt/server/DragAndDropService.java +++ b/src/com/vaadin/terminal/gwt/server/DragAndDropService.java @@ -22,9 +22,9 @@ import com.vaadin.ui.Component; public class DragAndDropService implements VariableOwner { private static final long serialVersionUID = -4745268869323400203L; - + public static final String DROPTARGET_KEY = "target"; - + private int lastVisitId; private DragRequest currentRequest; @@ -116,8 +116,9 @@ public class DragAndDropService implements VariableOwner { DragDropDetails dragDropDetails = constructDragDropDetails(dropTarget, variables); - dragDropHandler.handleDragRequest(constructDragRequest(variables, - transferable), transferable, dragDropDetails); + currentRequest = constructDragRequest(variables, transferable); + dragDropHandler.handleDragRequest(currentRequest, transferable, + dragDropDetails); } private static DragRequest constructDragRequest(