1
0
mirror of https://github.com/qTox/qTox.git synced 2024-03-22 14:00:36 +08:00

long time format

This commit is contained in:
agilob 2015-03-21 15:47:09 +00:00
parent a873bb571f
commit 77e333ab05

View File

@ -109,8 +109,10 @@ GeneralForm::GeneralForm(SettingsWidget *myParent) :
QLocale ql;
QStringList datestamps;
dateFormats.append(ql.dateFormat());
dateFormats.append(ql.dateFormat(QLocale::LongFormat));
dateFormats.removeDuplicates();
timeFormats.append(ql.timeFormat());
timeFormats.append(ql.timeFormat(QLocale::LongFormat));
timeFormats.removeDuplicates();
foreach (QString datestamp, dateFormats) {