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 5bcd0872c44320cce4e3883b43907fc878062f9e Author: Alex Harui <[email protected]> AuthorDate: Thu Mar 22 14:09:57 2018 -0700 fix some of the wrapping --- .../projects/Basic/src/main/royale/org/apache/royale/core/UIBase.as | 4 ++-- 1 file changed, 2 insertions(+), 2 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 8c51c31..33a61f4 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 @@ -1326,7 +1326,7 @@ package org.apache.royale.core { COMPILE::SWF { - return numChildren; + return $numChildren; } COMPILE::JS { @@ -1586,7 +1586,7 @@ package org.apache.royale.core COMPILE::SWF public function $addChildAt(child:DisplayObject, index:int):DisplayObject { - return super.addChild(child, int); + return super.addChildAt(child, int); } COMPILE::SWF public function $removeChildAt(index:int):DisplayObject -- To stop receiving notification emails like this one, please contact [email protected].
