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


The following commit(s) were added to refs/heads/feature/MXRoyale by this push:
     new e12dfa4  fix mxtests
e12dfa4 is described below

commit e12dfa4673c4946c28f3a14658dcb1a041d02ded
Author: Alex Harui <[email protected]>
AuthorDate: Mon Jul 23 21:37:58 2018 -0700

    fix mxtests
---
 .../MXRoyale/src/main/royale/mx/managers/SystemManager.as      | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git 
a/frameworks/projects/MXRoyale/src/main/royale/mx/managers/SystemManager.as 
b/frameworks/projects/MXRoyale/src/main/royale/mx/managers/SystemManager.as
index b5b864b..b162804 100644
--- a/frameworks/projects/MXRoyale/src/main/royale/mx/managers/SystemManager.as
+++ b/frameworks/projects/MXRoyale/src/main/royale/mx/managers/SystemManager.as
@@ -94,7 +94,6 @@ use namespace mx_internal;
 import mx.core.IChildList;
 import mx.core.IFlexDisplayObject;
 import mx.core.IUIComponent;
-import mx.core.UIComponent;
 import org.apache.royale.core.IUIBase;
 import org.apache.royale.events.IEventDispatcher;
 
@@ -191,8 +190,8 @@ import org.apache.royale.events.IEventDispatcher;
  *  @playerversion AIR 1.1
  *  @productversion Royale 0.9.4
  */
-public class SystemManager extends SystemManagerBase implements 
ISystemManager, IEventDispatcher
-{ //extends MovieClip implements IChildList, 
IFlexDisplayObject,IFlexModuleFactory, ISystemManager
+public class SystemManager extends SystemManagerBase implements 
ISystemManager, IEventDispatcher, IChildList
+{ //extends MovieClip implements IFlexDisplayObject,IFlexModuleFactory, 
ISystemManager
    // include "../core/Version.as";
 
     
//--------------------------------------------------------------------------
@@ -1296,7 +1295,7 @@ public class SystemManager extends SystemManagerBase 
implements ISystemManager,
      *  @productversion Royale 0.9.4
      */
    
-     public function get rawChildren():IChildList
+    public function get rawChildren():IChildList
     {
         //if (!topLevel)
         //  return _topLevelSystemManager.rawChildren;
@@ -1304,7 +1303,8 @@ public class SystemManager extends SystemManagerBase 
implements ISystemManager,
       /*  if (!_rawChildren)
             _rawChildren = new SystemRawChildrenList(this); */
 
-        return _rawChildren;
+        // return _rawChildren;
+        return this;
     } 
     
 

Reply via email to