You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@royale.apache.org by ca...@apache.org on 2020/06/09 18:36:10 UTC

[royale-asjs] branch develop updated: jewel-paddings: was not using IPadding interface

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

carlosrovira 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 6753f68  jewel-paddings: was not using IPadding interface
6753f68 is described below

commit 6753f683e9a8c6e04b5d70cfaab1aabdaabc2844
Author: Carlos Rovira <ca...@apache.org>
AuthorDate: Tue Jun 9 20:35:59 2020 +0200

    jewel-paddings: was not using IPadding interface
---
 .../src/main/royale/org/apache/royale/jewel/beads/layouts/Paddings.as | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/beads/layouts/Paddings.as b/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/beads/layouts/Paddings.as
index e8dfbd9..f103c7e 100644
--- a/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/beads/layouts/Paddings.as
+++ b/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/beads/layouts/Paddings.as
@@ -18,9 +18,9 @@
 ////////////////////////////////////////////////////////////////////////////////
 package org.apache.royale.jewel.beads.layouts
 {
-	import org.apache.royale.core.IBead;
 	import org.apache.royale.core.IStrand;
 	import org.apache.royale.core.IUIBase;
+	import org.apache.royale.core.layout.IPaddings;
 
     /**
      *  The Paddings class is a bead that adds padding to its host
@@ -30,7 +30,7 @@ package org.apache.royale.jewel.beads.layouts
      *  @playerversion AIR 2.6
      *  @productversion Royale 0.9.7
      */
-	public class Paddings implements IBead
+	public class Paddings implements IPaddings
 	{
 		protected var host:IUIBase;
 		/**