Repository: flex-sdk Updated Branches: refs/heads/release4.14.0 bf254f19e -> 3d97dec4f
Update Alert.as This typo causes an error when assigning a skinClass at runtime. This is my first time using git. Forgive me if I have done this incorrectly. Project: http://git-wip-us.apache.org/repos/asf/flex-sdk/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-sdk/commit/3d97dec4 Tree: http://git-wip-us.apache.org/repos/asf/flex-sdk/tree/3d97dec4 Diff: http://git-wip-us.apache.org/repos/asf/flex-sdk/diff/3d97dec4 Branch: refs/heads/release4.14.0 Commit: 3d97dec4f0dce6383902119e10d66a9333646838 Parents: bf254f1 Author: kevinGodell <[email protected]> Authored: Thu Jan 1 12:50:39 2015 -0600 Committer: Harbs <[email protected]> Committed: Thu Jan 1 22:45:02 2015 +0200 ---------------------------------------------------------------------- frameworks/projects/experimental/src/spark/components/Alert.as | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/3d97dec4/frameworks/projects/experimental/src/spark/components/Alert.as ---------------------------------------------------------------------- diff --git a/frameworks/projects/experimental/src/spark/components/Alert.as b/frameworks/projects/experimental/src/spark/components/Alert.as index b613739..205a07f 100644 --- a/frameworks/projects/experimental/src/spark/components/Alert.as +++ b/frameworks/projects/experimental/src/spark/components/Alert.as @@ -640,7 +640,7 @@ package spark.components { } override protected function partRemoved(partName:String, instance:Object):void { - super.partAdded(partName, instance); + super.partRemoved(partName, instance); if (partName == "buttonGroup") { destroyButtons(Group(instance)); }
