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:22:48 UTC

[1/2] git commit: [flex-sdk] [refs/heads/develop] - FLEX-22865 fix setting displayed month

Updated Branches:
  refs/heads/develop 1a1337d74 -> 07b27e69e


FLEX-22865 fix setting displayed month


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

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

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


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/d637d63b/frameworks/projects/mx/src/mx/controls/CalendarLayout.as
----------------------------------------------------------------------
diff --git a/frameworks/projects/mx/src/mx/controls/CalendarLayout.as b/frameworks/projects/mx/src/mx/controls/CalendarLayout.as
index 79c5526..44256ee 100644
--- a/frameworks/projects/mx/src/mx/controls/CalendarLayout.as
+++ b/frameworks/projects/mx/src/mx/controls/CalendarLayout.as
@@ -601,7 +601,7 @@ public class CalendarLayout extends UIComponent
         if (value < 0 || value > 11)
             return;
 
-        if (value == _displayedMonth)
+        if (value == _proposedDisplayedMonth)
             return;
 
         _proposedDisplayedMonth = value;


[2/2] git commit: [flex-sdk] [refs/heads/develop] - 2006 is an odd default changed to current year

Posted by jm...@apache.org.
2006 is an odd default changed to current year


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

Branch: refs/heads/develop
Commit: 07b27e69e79a1b1b9ba619d36d4c722388d6b644
Parents: d637d63
Author: Justin Mclean <jm...@apache.org>
Authored: Tue May 7 19:21:14 2013 +1000
Committer: Justin Mclean <jm...@apache.org>
Committed: Tue May 7 19:21:14 2013 +1000

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


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/07b27e69/frameworks/projects/mx/src/mx/controls/CalendarLayout.as
----------------------------------------------------------------------
diff --git a/frameworks/projects/mx/src/mx/controls/CalendarLayout.as b/frameworks/projects/mx/src/mx/controls/CalendarLayout.as
index 44256ee..745f43e 100644
--- a/frameworks/projects/mx/src/mx/controls/CalendarLayout.as
+++ b/frameworks/projects/mx/src/mx/controls/CalendarLayout.as
@@ -625,7 +625,7 @@ public class CalendarLayout extends UIComponent
      */
     private var _proposedDisplayedYear:int = -1;
 
-    [Inspectable(category="General", defaultValue="2006")]
+    [Inspectable(category="General", defaultValue="2013")]
 
     /**
      *  @private