You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by ah...@apache.org on 2016/11/15 00:52:14 UTC

git commit: [flex-asjs] [refs/heads/develop] - fix issue found by compiler fix

Repository: flex-asjs
Updated Branches:
  refs/heads/develop d555dbfd4 -> ecf727415


fix issue found by compiler fix


Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/ecf72741
Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/ecf72741
Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/ecf72741

Branch: refs/heads/develop
Commit: ecf727415cf57f847f946bad4ede93c423adb62a
Parents: d555dbf
Author: Alex Harui <ah...@apache.org>
Authored: Mon Nov 14 16:04:56 2016 -0800
Committer: Alex Harui <ah...@apache.org>
Committed: Mon Nov 14 16:04:56 2016 -0800

----------------------------------------------------------------------
 .../src/main/flex/samples/flexstore/ProductThumbEvent.as          | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/ecf72741/examples/flexjs/FlexJSStore/src/main/flex/samples/flexstore/ProductThumbEvent.as
----------------------------------------------------------------------
diff --git a/examples/flexjs/FlexJSStore/src/main/flex/samples/flexstore/ProductThumbEvent.as b/examples/flexjs/FlexJSStore/src/main/flex/samples/flexstore/ProductThumbEvent.as
index ce1cab7..19b5951 100755
--- a/examples/flexjs/FlexJSStore/src/main/flex/samples/flexstore/ProductThumbEvent.as
+++ b/examples/flexjs/FlexJSStore/src/main/flex/samples/flexstore/ProductThumbEvent.as
@@ -20,6 +20,7 @@ package samples.flexstore
 {
     
 import org.apache.flex.events.Event;
+import org.apache.flex.events.IFlexJSEvent;
 
 public class ProductThumbEvent extends Event
 {
@@ -36,7 +37,7 @@ public class ProductThumbEvent extends Event
         this.product = product;
     }
     
-    override public function cloneEvent():Event
+    override public function cloneEvent():IFlexJSEvent
     {
         return new ProductThumbEvent(type, product);
     }