You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@royale.apache.org by pu...@apache.org on 2021/07/11 07:05:31 UTC

[royale-asjs] branch develop updated: Revert FocusEvent.as

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 <42...@users.noreply.github.com>
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*/);
     }
 }