Repository: flex-sdk Updated Branches: refs/heads/develop 2324f43f0 -> f543314c4
FLEX-26808 Minor refactoring while reading the code: asdocs improvements, and adding missing semicolon. Project: http://git-wip-us.apache.org/repos/asf/flex-sdk/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-sdk/commit/74225ba2 Tree: http://git-wip-us.apache.org/repos/asf/flex-sdk/tree/74225ba2 Diff: http://git-wip-us.apache.org/repos/asf/flex-sdk/diff/74225ba2 Branch: refs/heads/develop Commit: 74225ba2b3be288c944a898406a94b27f02e444d Parents: 2324f43 Author: Mihai Chira <[email protected]> Authored: Wed Mar 23 12:17:59 2016 +0100 Committer: Mihai Chira <[email protected]> Committed: Wed Mar 23 12:17:59 2016 +0100 ---------------------------------------------------------------------- frameworks/projects/spark/src/spark/components/Grid.as | 2 +- .../src/spark/components/supportClasses/SkinnableComponent.as | 2 +- frameworks/projects/spark/src/spark/utils/MouseEventUtil.as | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/74225ba2/frameworks/projects/spark/src/spark/components/Grid.as ---------------------------------------------------------------------- diff --git a/frameworks/projects/spark/src/spark/components/Grid.as b/frameworks/projects/spark/src/spark/components/Grid.as index 78b2429..a489f31 100644 --- a/frameworks/projects/spark/src/spark/components/Grid.as +++ b/frameworks/projects/spark/src/spark/components/Grid.as @@ -4329,7 +4329,7 @@ public class Grid extends Group implements IDataGridElement, IDataProviderEnhanc * Create and/or configure this Grid's GridViews. We're assuming that the * Grid's viewFactory, columns and dataProvider are specified. * - * If GridVeiws are added or removed, a "gridViewsChanged" event is dispatched. + * If GridViews are added or removed, a "gridViewsChanged" event is dispatched. */ private function configureGridViews():void { http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/74225ba2/frameworks/projects/spark/src/spark/components/supportClasses/SkinnableComponent.as ---------------------------------------------------------------------- diff --git a/frameworks/projects/spark/src/spark/components/supportClasses/SkinnableComponent.as b/frameworks/projects/spark/src/spark/components/supportClasses/SkinnableComponent.as index 2a8c730..2fceebf 100644 --- a/frameworks/projects/spark/src/spark/components/supportClasses/SkinnableComponent.as +++ b/frameworks/projects/spark/src/spark/components/supportClasses/SkinnableComponent.as @@ -216,7 +216,7 @@ public class SkinnableComponent extends UIComponent /** * The instance of the skin class for this component instance. - * This is a read-only property that gets set automomatically when Flex + * This is a read-only property that gets set automatically when Flex * calls the <code>attachSkin()</code> method. * * @langversion 3.0 http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/74225ba2/frameworks/projects/spark/src/spark/utils/MouseEventUtil.as ---------------------------------------------------------------------- diff --git a/frameworks/projects/spark/src/spark/utils/MouseEventUtil.as b/frameworks/projects/spark/src/spark/utils/MouseEventUtil.as index 97fc04f..ca6f08c 100644 --- a/frameworks/projects/spark/src/spark/utils/MouseEventUtil.as +++ b/frameworks/projects/spark/src/spark/utils/MouseEventUtil.as @@ -118,7 +118,7 @@ package spark.utils target.systemManager.deployMouseShields(false); break; } - } + }; target.addEventListener(MouseEvent.MOUSE_DOWN, f); target.addEventListener("removeHandler", f); }
