You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@royale.apache.org by ah...@apache.org on 2018/03/23 07:19:10 UTC

[royale-asjs] 02/02: fix wrappers

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 <ah...@apache.org>
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
aharui@apache.org.