This is an automated email from the ASF dual-hosted git repository.

piotrz pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/royale-asjs.git


The following commit(s) were added to refs/heads/develop by this push:
     new 6489b06  MXRoyale: Fix type of event in hidDropFeedback method to 
align with original implementation
6489b06 is described below

commit 6489b064aee3249f3393b7054e685a6afc852e81
Author: Piotr Zarzycki <pio...@apache.org>
AuthorDate: Fri Jan 8 16:12:26 2021 +0000

    MXRoyale: Fix type of event in hidDropFeedback method to align with 
original implementation
---
 .../MXRoyale/src/main/royale/mx/controls/listClasses/ListBase.as       | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git 
a/frameworks/projects/MXRoyale/src/main/royale/mx/controls/listClasses/ListBase.as
 
b/frameworks/projects/MXRoyale/src/main/royale/mx/controls/listClasses/ListBase.as
index e4bf07e..420a7c0 100644
--- 
a/frameworks/projects/MXRoyale/src/main/royale/mx/controls/listClasses/ListBase.as
+++ 
b/frameworks/projects/MXRoyale/src/main/royale/mx/controls/listClasses/ListBase.as
@@ -31,6 +31,7 @@ import mx.core.ScrollPolicy;
 import mx.core.UIComponent;
 import mx.core.mx_internal;
 import mx.events.CollectionEvent;
+import mx.events.DragEvent;
 import mx.utils.UIDUtil;
 
 import org.apache.royale.core.ContainerBaseStrandChildren;
@@ -1108,7 +1109,7 @@ use namespace mx_internal;
         *  @playerversion AIR 1.1
         *  @productversion Flex 3
         */
-       public function hideDropFeedback(event:Object):void
+       public function hideDropFeedback(event:DragEvent):void
        {
            //To Do
            trace("hideDropFeedback is not implemented");

Reply via email to