This is an automated email from the ASF dual-hosted git repository. yishayw pushed a commit to branch develop in repository https://gitbox.apache.org/repos/asf/royale-asjs.git
commit 5e04876791b34e0013c58ee31d29f7d901768d89 Author: Yishay Weiss <[email protected]> AuthorDate: Tue Sep 29 22:50:13 2020 +0100 Some stub functions to BitmapImage --- .../main/royale/spark/primitives/BitmapImage.as | 32 ++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/frameworks/projects/SparkRoyale/src/main/royale/spark/primitives/BitmapImage.as b/frameworks/projects/SparkRoyale/src/main/royale/spark/primitives/BitmapImage.as index f34a086..9c4fb34 100644 --- a/frameworks/projects/SparkRoyale/src/main/royale/spark/primitives/BitmapImage.as +++ b/frameworks/projects/SparkRoyale/src/main/royale/spark/primitives/BitmapImage.as @@ -206,6 +206,38 @@ public class BitmapImage extends EventDispatcher // Properties // //-------------------------------------------------------------------------- + + +public function set left(value:Number):void +{ + // stub - this should be removed once BitmapImage extends the right class; +} + +public function set right(value:Number):void +{ + // stub - this should be removed once BitmapImage extends the right class; +} + +public function set top(value:Number):void +{ + // stub - this should be removed once BitmapImage extends the right class; +} + +public function set bottom(value:Number):void +{ + // stub - this should be removed once BitmapImage extends the right class; +} + +public function set minWidth(value:Number):void +{ + // stub - this should be removed once BitmapImage extends the right class; +} + +public function set minHeight(value:Number):void +{ + // stub - this should be removed once BitmapImage extends the right class; +} + /* private var _scaleGridBottom:Number; private var _scaleGridLeft:Number;
