Subversion Repository Public Repository

litesoft

Diff Revisions 851 vs 860 for /trunk/Java/GWT/OldClient/src/org/litesoft/GWT/client/widgets/nonpublic/CreditsPanel.java

Diff revisions: vs.
  @@ -30,14 +30,14 @@
30 30 }
31 31
32 32 int longestWhoLength = 2;
33 - SimpleDate earliestStartDate = pCreditsData[0].getStartDate();
34 - SimpleDate latestEndDate = pCreditsData[0].getEndDate();
33 + CalendarYMD earliestStartDate = pCreditsData[0].getStartDate();
34 + CalendarYMD latestEndDate = pCreditsData[0].getEndDate();
35 35 for ( int i = 0; i < pCreditsData.length; i++ )
36 36 {
37 37 CreditsData creditsData = pCreditsData[i];
38 38 int whoLength = creditsData.getWho().length();
39 - SimpleDate startDate = creditsData.getStartDate();
40 - SimpleDate endDate = creditsData.getEndDate();
39 + CalendarYMD startDate = creditsData.getStartDate();
40 + CalendarYMD endDate = creditsData.getEndDate();
41 41 while ( whoLength > longestWhoLength )
42 42 {
43 43 longestWhoLength += 2;