You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by ah...@apache.org on 2017/05/30 19:47:42 UTC

[07/50] git commit: [flex-asjs] [refs/heads/tlf] - Border needs to inherit its values

Border needs to inherit its values


Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/7568d818
Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/7568d818
Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/7568d818

Branch: refs/heads/tlf
Commit: 7568d81804345fb9bd5451fd34f30b75a74e01c9
Parents: e0b9641
Author: Alex Harui <ah...@apache.org>
Authored: Tue May 23 11:31:04 2017 -0700
Committer: Alex Harui <ah...@apache.org>
Committed: Tue May 23 11:31:13 2017 -0700

----------------------------------------------------------------------
 .../flexjs/DataBindingExample_as/src/main/flex/MyInitialView.as   | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/7568d818/examples/flexjs/DataBindingExample_as/src/main/flex/MyInitialView.as
----------------------------------------------------------------------
diff --git a/examples/flexjs/DataBindingExample_as/src/main/flex/MyInitialView.as b/examples/flexjs/DataBindingExample_as/src/main/flex/MyInitialView.as
index c3982b8..eebc3d9 100644
--- a/examples/flexjs/DataBindingExample_as/src/main/flex/MyInitialView.as
+++ b/examples/flexjs/DataBindingExample_as/src/main/flex/MyInitialView.as
@@ -30,6 +30,7 @@ import org.apache.flex.core.ValuesManager;
 import org.apache.flex.core.View;
 import org.apache.flex.events.CustomEvent;
 import org.apache.flex.events.Event;
+import org.apache.flex.events.MouseEvent;
 import org.apache.flex.html.CheckBox;
 import org.apache.flex.html.Container;
 import org.apache.flex.html.DropDownList;
@@ -262,7 +263,7 @@ public class MyInitialView extends View
     public var showAllData:CheckBox;
     public var ta:TextArea;
 
-    private function tb_clickHandler(event:Event):void
+    private function tb_clickHandler(event:MouseEvent):void
     {
         _symbol = symbolTI.text;
         dispatchEvent(new CustomEvent('buttonClicked'));