Hi Alina, This change should have caused the SparkRoyale build to fail due to a missing import. Did it not fail for you?
Thanks, -Alex On 8/2/18, 11:38 PM, "[email protected]" <[email protected]> wrote: This is an automated email from the ASF dual-hosted git repository. alinakazi pushed a commit to branch feature/MXRoyale in repository https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgitbox.apache.org%2Frepos%2Fasf%2Froyale-asjs.git&data=02%7C01%7Caharui%40adobe.com%7Ce3d6cf283d6b4a840c8708d5f90bb740%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C636688751073701368&sdata=kntiK1qlFI9y6gHMivcMR9AaJy5d57mQ2cWoH3fbEyQ%3D&reserved=0 The following commit(s) were added to refs/heads/feature/MXRoyale by this push: new 86215d7 Update BorderContainer.as 86215d7 is described below commit 86215d7be2c749f1c665954a108ca92c56ab8b33 Author: alinakazi <[email protected]> AuthorDate: Fri Aug 3 11:38:22 2018 +0500 Update BorderContainer.as borderStyle property added --- .../royale/spark/components/BorderContainer.as | 29 +++++++++++++++++----- 1 file changed, 23 insertions(+), 6 deletions(-) diff --git a/frameworks/projects/SparkRoyale/src/main/royale/spark/components/BorderContainer.as b/frameworks/projects/SparkRoyale/src/main/royale/spark/components/BorderContainer.as index 44aadee..d302159 100644 --- a/frameworks/projects/SparkRoyale/src/main/royale/spark/components/BorderContainer.as +++ b/frameworks/projects/SparkRoyale/src/main/royale/spark/components/BorderContainer.as @@ -236,23 +236,40 @@ public class BorderContainer extends SkinnableContainer { super(); } - public function get borderColor():uint { + public function get borderColor():uint + { return 0; } - public function set borderColor(val:uint):void { + public function set borderColor(val:uint):void + { } - public function get borderWeight():Number { + public function get borderWeight():Number + { return 0; } - public function set borderWeight(val:Number):void { + public function set borderWeight(val:Number):void + { } - public function get dropShadowVisible():Boolean { + public function get dropShadowVisible():Boolean + { return false; } - public function set dropShadowVisible(val:Boolean):void { + public function set dropShadowVisible(val:Boolean):void + { + } + public function get borderStyle():String + { + if (GOOG::DEBUG) + trace("BorderContainer:borderStyle not implemented"); + return "solid"; + } + public function set borderStyle(value:String):void + { + if (GOOG::DEBUG) + trace("BorderContainer:borderStyle not implemented"); } // private var _backgroundFill:IFill;
