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/08/29 07:20:21 UTC

[GitHub] alinakazi closed pull request #277: new changes on 29-8-2018

alinakazi closed pull request #277: new changes on 29-8-2018
URL: https://github.com/apache/royale-asjs/pull/277
 
 
   

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/MXRoyale/src/main/royale/mx/controls/Button.as b/frameworks/projects/MXRoyale/src/main/royale/mx/controls/Button.as
index 82c330dce..3e241476d 100644
--- a/frameworks/projects/MXRoyale/src/main/royale/mx/controls/Button.as
+++ b/frameworks/projects/MXRoyale/src/main/royale/mx/controls/Button.as
@@ -253,6 +253,19 @@ public class Button extends UIComponent implements IDataRenderer
 		typeNames = "Button";
 	}
 	
+	
+	// ------------------------------------------------
+	//  paddingRight
+	// ------------------------------------------------
+	
+	public function get paddingRight():Number
+	{
+		return 0;
+	}
+	public function set paddingRight(value:Number):void
+	{
+	}
+
 	// ------------------------------------------------
 	//  fontStyle
 	// ------------------------------------------------
diff --git a/frameworks/projects/MXRoyale/src/main/royale/mx/controls/listClasses/AdvancedListBase.as b/frameworks/projects/MXRoyale/src/main/royale/mx/controls/listClasses/AdvancedListBase.as
index 6143a66f8..e615c1766 100644
--- a/frameworks/projects/MXRoyale/src/main/royale/mx/controls/listClasses/AdvancedListBase.as
+++ b/frameworks/projects/MXRoyale/src/main/royale/mx/controls/listClasses/AdvancedListBase.as
@@ -1596,6 +1596,18 @@ public class AdvancedListBase extends UIComponent /* extends ScrollControlBase
 
         addClipMask(false);
     } */
+    
+    
+    //----------------------------------
+    //  borderVisible
+    //----------------------------------
+    public function get borderVisible():Boolean
+    {
+        return true;
+    }
+    public function set borderVisible(value:Boolean):void
+    {
+    }
 
     //----------------------------------
     //  verticalScrollPolicy
@@ -1718,6 +1730,21 @@ public class AdvancedListBase extends UIComponent /* extends ScrollControlBase
      *  @productversion Royale 0.9.4
 	 *	@royalesuppresspublicvarwarning 
 	 */
+	 
+    //----------------------------------
+    //  editable
+    //----------------------------------
+    
+    public function get editable():String
+	{
+	  return "";
+	}
+    public function set editable(value:String):void
+	{
+	
+	}
+	
+	
     public var allowDragSelection:Boolean = false;
 
     //----------------------------------
diff --git a/frameworks/projects/MXRoyale/src/main/royale/mx/effects/Effect.as b/frameworks/projects/MXRoyale/src/main/royale/mx/effects/Effect.as
index 58f7d87d7..dcea7c58c 100644
--- a/frameworks/projects/MXRoyale/src/main/royale/mx/effects/Effect.as
+++ b/frameworks/projects/MXRoyale/src/main/royale/mx/effects/Effect.as
@@ -73,6 +73,20 @@ public class Effect extends org.apache.royale.effects.Effect
 	public function end(effectInstance:IEffectInstance = null):void
     {
     }
+    
+    //--------------------------------------------------------------------------
+    //  duration
+    //--------------------------------------------------------------------------
+	
+    public function get duration():Number
+	{
+	return 0;
+	}
+    public function set duration(value:Number):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