diff options
author | Sauli Tähkäpää <sauli@vaadin.com> | 2014-10-04 00:03:38 +0300 |
---|---|---|
committer | Sauli Tähkäpää <sauli@vaadin.com> | 2014-11-10 13:20:11 +0200 |
commit | fead7a7435a360776a93df55e5e9ca9e24fa3fd0 (patch) | |
tree | ad8cef06f5ec6f1db4f4b5ecee4a68bbab44ffe1 /shared | |
parent | ef8d1ecf8765ce68bbe69021b90f3377ef8d201a (diff) | |
download | vaadin-framework-fead7a7435a360776a93df55e5e9ca9e24fa3fd0.tar.gz vaadin-framework-fead7a7435a360776a93df55e5e9ca9e24fa3fd0.zip |
Fix VCalendar to use correct year of week. (#14783)
Change-Id: Id55ad5ed620bd5c187b70ae2a2d0a4c4adea382a
Diffstat (limited to 'shared')
-rw-r--r-- | shared/src/com/vaadin/shared/ui/calendar/CalendarState.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/shared/src/com/vaadin/shared/ui/calendar/CalendarState.java b/shared/src/com/vaadin/shared/ui/calendar/CalendarState.java index de48f1a06a..93bd05bc1e 100644 --- a/shared/src/com/vaadin/shared/ui/calendar/CalendarState.java +++ b/shared/src/com/vaadin/shared/ui/calendar/CalendarState.java @@ -44,6 +44,7 @@ public class CalendarState extends AbstractComponentState { public String localizedDateFormat; public int dayOfWeek; public int week; + public int yearOfWeek; } public static class Action implements java.io.Serializable { |