You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@royale.apache.org by GitBox <gi...@apache.org> on 2018/09/03 07:47:31 UTC

[GitHub] alinakazi closed pull request #280: Changes in 31.8.2018

alinakazi closed pull request #280: Changes in 31.8.2018
URL: https://github.com/apache/royale-asjs/pull/280
 
 
   

This is a PR merged from a forked repository.
As GitHub hides the original diff on merge, it is displayed below for
the sake of provenance:

As this is a foreign pull request (from a fork), the diff is supplied
below (as it won't show otherwise due to GitHub magic):

diff --git a/frameworks/projects/Core/src/main/royale/org/apache/royale/events/Event.as b/frameworks/projects/Core/src/main/royale/org/apache/royale/events/Event.as
index 0c9ebbb7e..c2689f2c3 100644
--- a/frameworks/projects/Core/src/main/royale/org/apache/royale/events/Event.as
+++ b/frameworks/projects/Core/src/main/royale/org/apache/royale/events/Event.as
@@ -52,6 +52,7 @@ package org.apache.royale.events
 		public static const CHANGE:String = "change";
 		public static const COMPLETE:String = "complete";
 		public static const SELECT:String = "select";
+		public static const OPEN:String = "open";
 		//--------------------------------------
 		//   Constructor
 		//--------------------------------------
@@ -158,6 +159,7 @@ package org.apache.royale.events
 		public static const CHANGE:String = "change";
 		public static const COMPLETE:String = "complete";
 		public static const SELECT:String = "select";
+		public static const OPEN:String = "open";
 
         public function Event(type:String, bubbles:Boolean = false, cancelable:Boolean = false) {
             super(type);
diff --git a/frameworks/projects/MXRoyale/src/main/royale/mx/core/UIComponent.as b/frameworks/projects/MXRoyale/src/main/royale/mx/core/UIComponent.as
index 1981f3a25..e6231b6c2 100644
--- a/frameworks/projects/MXRoyale/src/main/royale/mx/core/UIComponent.as
+++ b/frameworks/projects/MXRoyale/src/main/royale/mx/core/UIComponent.as
@@ -743,6 +743,18 @@ public class UIComponent extends UIBase
      *  @playerversion AIR 1.1
      *  @productversion Flex 3
      */
+     
+    COMPILE::JS{
+    public function get tabChildren():Boolean
+	{
+	  return 0;
+	}
+    public function set tabChildren(value:Boolean):void
+	{
+	}
+    }
+    
+    
     public function get accessibilityEnabled():Boolean
     {
         if (GOOG::DEBUG)
diff --git a/frameworks/projects/MXRoyale/src/main/royale/mx/net/FileReference.as b/frameworks/projects/MXRoyale/src/main/royale/mx/net/FileReference.as
index ea665b3f6..b221b1b62 100644
--- a/frameworks/projects/MXRoyale/src/main/royale/mx/net/FileReference.as
+++ b/frameworks/projects/MXRoyale/src/main/royale/mx/net/FileReference.as
@@ -57,6 +57,12 @@ package mx.net
 	  {
 	    return null;
 	  }
+	  
+	  public function save(data:*, defaultFileName:String = null):void
+          {
+
+          }
+
       
    }
 


 

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services