This is an automated email from the ASF dual-hosted git repository.
pushminakazi 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 e4c3d21 Revert FocusEvent.as
e4c3d21 is described below
commit e4c3d214007c0ff47790823322b625c04ae467bd
Author: pashminakazi <[email protected]>
AuthorDate: Sun Jul 11 00:05:25 2021 -0700
Revert FocusEvent.as
---
.../projects/MXRoyale/src/main/royale/mx/events/FocusEvent.as | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git
a/frameworks/projects/MXRoyale/src/main/royale/mx/events/FocusEvent.as
b/frameworks/projects/MXRoyale/src/main/royale/mx/events/FocusEvent.as
index 0ce8ea7..a43529b 100644
--- a/frameworks/projects/MXRoyale/src/main/royale/mx/events/FocusEvent.as
+++ b/frameworks/projects/MXRoyale/src/main/royale/mx/events/FocusEvent.as
@@ -54,10 +54,10 @@ public class FocusEvent extends flash.events.FocusEvent
public static const KEY_FOCUS_CHANGE:String = "keyFocusChange"
public static const MOUSE_FOCUS_CHANGE:String = "mouseFocusChange"
- public function FocusEvent(type:String, bubbles:Boolean = false,
- cancelable:Boolean = false
,relatedObject:InteractiveObject = null, shiftKey:Boolean = false, keyCode:uint
= 0, direction:String = "none")
+ public function FocusEvent(type:String/*, bubbles:Boolean = false,
+ cancelable:Boolean = false
,relatedObject:InteractiveObject = null, shiftKey:Boolean = false, keyCode:uint
= 0, direction:String = "none"*/)
{
- super(type, bubbles,
cancelable,relatedObject,shiftKey,keyCode,direction);
+ super(type/*, bubbles,
cancelable,relatedObject,shiftKey,keyCode,direction*/);
}
}