You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@royale.apache.org by pi...@apache.org on 2018/01/29 20:48:58 UTC

[royale-asjs] branch develop updated: Make _imageWidth and _imageHeight protected to allow sub class use it.

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

piotrz 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 3eb10e4  Make _imageWidth and _imageHeight protected to allow sub class use it.
3eb10e4 is described below

commit 3eb10e4ff80ba4e2041b8a067aec8c16672bb829
Author: Piotr Zarzycki <pi...@gmail.com>
AuthorDate: Mon Jan 29 21:48:50 2018 +0100

    Make _imageWidth and _imageHeight protected to allow sub class use it.
---
 .../src/main/royale/org/apache/royale/mdl/beads/ContactImageChip.as   | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/frameworks/projects/MaterialDesignLite/src/main/royale/org/apache/royale/mdl/beads/ContactImageChip.as b/frameworks/projects/MaterialDesignLite/src/main/royale/org/apache/royale/mdl/beads/ContactImageChip.as
index 013f9f6..e5be87f 100644
--- a/frameworks/projects/MaterialDesignLite/src/main/royale/org/apache/royale/mdl/beads/ContactImageChip.as
+++ b/frameworks/projects/MaterialDesignLite/src/main/royale/org/apache/royale/mdl/beads/ContactImageChip.as
@@ -54,8 +54,8 @@ package org.apache.royale.mdl.beads
 
         private var _strand:IStrand;
 
-        private var _imageWidth:Number = 32;
-        private var _imageHeight:Number = 32;
+        protected var _imageWidth:Number = 32;
+        protected var _imageHeight:Number = 32;
 
         /**
          * Specifies the width of the image Chip, in pixels.

-- 
To stop receiving notification emails like this one, please contact
piotrz@apache.org.