Menu

#6 First Day Label

v1.0_(example)
open
nobody
5
2006-04-04
2006-04-04
Anonymous
No

When Calendar is french, the monday label is wrong.

In DatePicker.java replace the line 271 by :

for (int i = 0; i < 7; i++) {
if (i == 6)
{gc.setForeground(display.getSystemColor(SWT.COLOR_RED));
}

// jblemee
int day = (cal.getFirstDayOfWeek()-1 + i)%7+1;
drawTextImage(gc, getDayName(day), x, 0, colSize, rowSize);

x += colSize;
}

Discussion

  • Nobody/Anonymous

    Logged In: NO

    Can you post the whole file please. Thanks.

     
  • Nobody/Anonymous

    Logged In: NO

    Commited it to CVS. Thanks!

     

Log in to post a comment.