This is an automated email from the ASF dual-hosted git repository. aharui pushed a commit to branch feature/MXRoyale in repository https://gitbox.apache.org/repos/asf/royale-asjs.git
commit dc525341ac07496b846a2ae6d2a9096d95c725e6 Author: Alex Harui <[email protected]> AuthorDate: Fri Mar 23 00:18:56 2018 -0700 fix wrappers --- .../Basic/src/main/royale/org/apache/royale/core/UIBase.as | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/frameworks/projects/Basic/src/main/royale/org/apache/royale/core/UIBase.as b/frameworks/projects/Basic/src/main/royale/org/apache/royale/core/UIBase.as index 33a61f4..7bf5d6f 100644 --- a/frameworks/projects/Basic/src/main/royale/org/apache/royale/core/UIBase.as +++ b/frameworks/projects/Basic/src/main/royale/org/apache/royale/core/UIBase.as @@ -1586,12 +1586,12 @@ package org.apache.royale.core COMPILE::SWF public function $addChildAt(child:DisplayObject, index:int):DisplayObject { - return super.addChildAt(child, int); + return super.addChildAt(child, index); } COMPILE::SWF public function $removeChildAt(index:int):DisplayObject { - return super.removeChildAt(int); + return super.removeChildAt(index); } COMPILE::SWF public function $removeChild(child:DisplayObject):DisplayObject @@ -1601,12 +1601,12 @@ package org.apache.royale.core COMPILE::SWF public function $getChildAt(index:int):DisplayObject { - return super.getChildAt(int); + return super.getChildAt(index); } COMPILE::SWF public function $setChildIndex(index:int):void { - super.setChildIndex(int); + super.setChildIndex(index); } COMPILE::SWF public function $getChildIndex(child:DisplayObject):int -- To stop receiving notification emails like this one, please contact [email protected].
