problem: KGlobal::locale()->dateFormatShort() uses a 2-digit year,
which is especially ambiguous considering the huge range of dates
accessible with ExtDate.
CCMAIL: kstars-devel@kde.org
svn path=/trunk/kdeedu/libkdeedu/; revision=347761
// const ExtCalendarSystem * calendar = KGlobal::locale()->calendar();
// line->setText(KGlobal::locale()->formatDate(date, true));
- line->setText( date.toString("MM/dd/yyyy") );
+ line->setText( date.toString( KGlobal::locale()->dateFormatShort() ) );
selectMonth->setText(d->calendar->monthName(date, false));
fillWeeksCombo(date);