First Day Label
Status: Beta
Brought to you by:
andyglow
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;
}
Logged In: NO
Can you post the whole file please. Thanks.
Logged In: NO
Commited it to CVS. Thanks!