This is an automated email from the ASF dual-hosted git repository.
joshtynjala 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 464b98be35 fixes the embed tag under flex (#1232)
464b98be35 is described below
commit 464b98be357e2231482d87597515f5eb7b3a5825
Author: noah the goodra <[email protected]>
AuthorDate: Wed Dec 6 11:02:18 2023 -0600
fixes the embed tag under flex (#1232)
ixes the embed tag under flex
this fix can help with porting processes by allowing the libraries to work
under apache flex.
---
frameworks/projects/MXRoyale/src/main/royale/mx/display/Bitmap.as | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/frameworks/projects/MXRoyale/src/main/royale/mx/display/Bitmap.as
b/frameworks/projects/MXRoyale/src/main/royale/mx/display/Bitmap.as
index df60e6643e..bbc465087c 100644
--- a/frameworks/projects/MXRoyale/src/main/royale/mx/display/Bitmap.as
+++ b/frameworks/projects/MXRoyale/src/main/royale/mx/display/Bitmap.as
@@ -32,11 +32,11 @@ package mx.display
COMPILE::SWF
- public class Bitmap extends flash.display.DisplayObject
+ public class Bitmap extends flash.display.Bitmap
{
public function Bitmap(bitmapData:BitmapData = null,
pixelSnapping:String = "auto", smoothing:Boolean = false)
{
- super();
+ super(bitmapData, pixelSnapping,smoothing);
}
}