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 <[email protected]> Authored: Mon Nov 14 16:04:56 2016 -0800 Committer: Alex Harui <[email protected]> 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); }
