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 9ee7abb Added collection in ComboBase.as and change in FocusEvent.as
9ee7abb is described below
commit 9ee7abbaa576d9985f9314a1369e41faaa91a464
Author: pashminakazi <[email protected]>
AuthorDate: Wed Jun 30 03:58:34 2021 -0700
Added collection in ComboBase.as and change in FocusEvent.as
---
.../projects/MXRoyale/src/main/royale/mx/controls/ComboBase.as | 10 ++++++++++
.../projects/MXRoyale/src/main/royale/mx/events/FocusEvent.as | 6 +++---
2 files changed, 13 insertions(+), 3 deletions(-)
diff --git
a/frameworks/projects/MXRoyale/src/main/royale/mx/controls/ComboBase.as
b/frameworks/projects/MXRoyale/src/main/royale/mx/controls/ComboBase.as
index 47cfc4e..7588c84 100644
--- a/frameworks/projects/MXRoyale/src/main/royale/mx/controls/ComboBase.as
+++ b/frameworks/projects/MXRoyale/src/main/royale/mx/controls/ComboBase.as
@@ -376,6 +376,16 @@ public class ComboBase extends UIComponent implements
/*IIMESupport,*/ IFocusMan
// Variables
//
//--------------------------------------------------------------------------
+
+ /**
+ * The ICollectionView of items this component displays.
+ *
+ * @langversion 3.0
+ * @playerversion Flash 9
+ * @playerversion AIR 1.1
+ * @productversion Flex 3
+ */
+ protected var collection:ICollectionView;
/**
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 a43529b..0ce8ea7 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);
}
}