Repository: flex-asjs Updated Branches: refs/heads/feature-autobuild/maven-archetypes 33eaf210f -> 1774068cd
Added missing event declarations. Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/7073d36c Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/7073d36c Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/7073d36c Branch: refs/heads/feature-autobuild/maven-archetypes Commit: 7073d36c9f3c352c82a06de489f716df4e6441f7 Parents: 33eaf21 Author: Peter Ent <[email protected]> Authored: Thu Sep 29 12:21:00 2016 -0400 Committer: Peter Ent <[email protected]> Committed: Thu Sep 29 12:21:00 2016 -0400 ---------------------------------------------------------------------- .../src/main/flex/org/apache/flex/mobile/StackedViewManager.as | 2 ++ .../src/main/flex/org/apache/flex/mobile/TabbedViewManager.as | 2 ++ 2 files changed, 4 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/7073d36c/frameworks/projects/Mobile/src/main/flex/org/apache/flex/mobile/StackedViewManager.as ---------------------------------------------------------------------- diff --git a/frameworks/projects/Mobile/src/main/flex/org/apache/flex/mobile/StackedViewManager.as b/frameworks/projects/Mobile/src/main/flex/org/apache/flex/mobile/StackedViewManager.as index 6720d1a..7a2d0f1 100644 --- a/frameworks/projects/Mobile/src/main/flex/org/apache/flex/mobile/StackedViewManager.as +++ b/frameworks/projects/Mobile/src/main/flex/org/apache/flex/mobile/StackedViewManager.as @@ -26,6 +26,8 @@ package org.apache.flex.mobile import org.apache.flex.mobile.chrome.ToolBar; import org.apache.flex.mobile.models.ViewManagerModel; + [Event(name="viewChanged",type="org.apache.flex.events.Event")] + /** * The StackedViewManager displays a single View at a time from a * collection of Views where views[0] is at the bottom and views[n-1] http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/7073d36c/frameworks/projects/Mobile/src/main/flex/org/apache/flex/mobile/TabbedViewManager.as ---------------------------------------------------------------------- diff --git a/frameworks/projects/Mobile/src/main/flex/org/apache/flex/mobile/TabbedViewManager.as b/frameworks/projects/Mobile/src/main/flex/org/apache/flex/mobile/TabbedViewManager.as index 49438a8..243e285 100644 --- a/frameworks/projects/Mobile/src/main/flex/org/apache/flex/mobile/TabbedViewManager.as +++ b/frameworks/projects/Mobile/src/main/flex/org/apache/flex/mobile/TabbedViewManager.as @@ -24,6 +24,8 @@ package org.apache.flex.mobile import org.apache.flex.mobile.chrome.TabBar; import org.apache.flex.mobile.models.ViewManagerModel; + [Event(name="viewChanged",type="org.apache.flex.events.Event")] + /** * The TabbedViewManager displays a set of views, only one of which is active at * a time. The other views are reachable via a set of tab buttons at the bottom of
