You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@royale.apache.org by ha...@apache.org on 2018/09/17 12:43:24 UTC

[royale-asjs] branch develop updated: Fixed broken build

This is an automated email from the ASF dual-hosted git repository.

harbs pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/royale-asjs.git


The following commit(s) were added to refs/heads/develop by this push:
     new 990bfe7  Fixed broken build
990bfe7 is described below

commit 990bfe753a5130292e31b4ef9b0d448415fd0a68
Author: Harbs <ha...@in-tools.com>
AuthorDate: Mon Sep 17 15:43:13 2018 +0300

    Fixed broken build
---
 .../src/main/royale/spark/components/BorderContainer.as        | 10 +++++-----
 1 file changed, 5 insertions(+), 5 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 e50cc3a..a892946 100644
--- a/frameworks/projects/SparkRoyale/src/main/royale/spark/components/BorderContainer.as
+++ b/frameworks/projects/SparkRoyale/src/main/royale/spark/components/BorderContainer.as
@@ -266,23 +266,23 @@ public class BorderContainer extends SkinnableContainer
 	}
 	public function get borderStyle():String
 	{
-	if (GOOG::DEBUG)
 	    trace("BorderContainer:borderStyle not implemented");
-	return "solid";
+    	return "solid";
 	}
 	public function set borderStyle(value:String):void
 	{
-	if (GOOG::DEBUG)
 	    trace("BorderContainer:borderStyle not implemented");
 	}
 	
 	public function get backgroundImage():Object
 	{
-	return "undefined";
+        trace("BorderContainer.backgroundImage not implemented");
+	    return null;
 	}
 	public function set backgroundImage(value:Object):void
 	{
-	
+        trace("BorderContainer.backgroundImage not implemented");
+    }
 	
    // private var _backgroundFill:IFill;