This is an automated email from the ASF dual-hosted git repository.
aharui 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 ab7dcb4 fix ProgressEvent and ModuleEvent. Should fix #959
ab7dcb4 is described below
commit ab7dcb4de7f6e093cb0bc817a56f3bc9860d923c
Author: Alex Harui <[email protected]>
AuthorDate: Mon Nov 30 00:04:00 2020 -0800
fix ProgressEvent and ModuleEvent. Should fix #959
---
frameworks/projects/MXRoyale/src/main/royale/mx/events/ProgressEvent.as | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/frameworks/projects/MXRoyale/src/main/royale/mx/events/ProgressEvent.as
b/frameworks/projects/MXRoyale/src/main/royale/mx/events/ProgressEvent.as
index 1b40e3d..1cccc07 100644
--- a/frameworks/projects/MXRoyale/src/main/royale/mx/events/ProgressEvent.as
+++ b/frameworks/projects/MXRoyale/src/main/royale/mx/events/ProgressEvent.as
@@ -42,7 +42,7 @@ package mx.events
public function ProgressEvent(type:String,
bubbles:Boolean=false, cancelable:Boolean=false,
current:Number = NaN, total:Number = NaN)
{
- super(total, bubbles);
+ super(type, bubbles, cancelable, current, total);
}