You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by jm...@apache.org on 2013/05/07 11:05:24 UTC

git commit: [flex-sdk] [refs/heads/develop] - FLEX-14153 Removed cast as it's not required

Updated Branches:
  refs/heads/develop aa837d625 -> 1a1337d74


FLEX-14153 Removed cast as it's not required


Project: http://git-wip-us.apache.org/repos/asf/flex-sdk/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-sdk/commit/1a1337d7
Tree: http://git-wip-us.apache.org/repos/asf/flex-sdk/tree/1a1337d7
Diff: http://git-wip-us.apache.org/repos/asf/flex-sdk/diff/1a1337d7

Branch: refs/heads/develop
Commit: 1a1337d7447c53dce34d34a2854e40816643fe99
Parents: aa837d6
Author: Justin Mclean <jm...@apache.org>
Authored: Tue May 7 19:05:11 2013 +1000
Committer: Justin Mclean <jm...@apache.org>
Committed: Tue May 7 19:05:11 2013 +1000

----------------------------------------------------------------------
 .../projects/mx/src/mx/controls/DateChooser.as     |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/1a1337d7/frameworks/projects/mx/src/mx/controls/DateChooser.as
----------------------------------------------------------------------
diff --git a/frameworks/projects/mx/src/mx/controls/DateChooser.as b/frameworks/projects/mx/src/mx/controls/DateChooser.as
index 289d10f..4212463 100644
--- a/frameworks/projects/mx/src/mx/controls/DateChooser.as
+++ b/frameworks/projects/mx/src/mx/controls/DateChooser.as
@@ -2244,7 +2244,7 @@ public class DateChooser extends UIComponent implements IFocusManagerComponent,
         {
             calHeader = new UIComponent();
             addChild(calHeader);
-            UIComponent(calHeader).styleName = this;
+            calHeader.styleName = this;
         }
 
         createMonthDisplay(-1);