1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-08-14 15:33:34 -04:00

force 24h time format

changed hh:mm to HH:mm
changed dd.MM.yyyy to yyyy-MM-dd to uniform all date format
This commit is contained in:
beta-tester
2018-05-11 11:00:08 +02:00
parent 251b93f97a
commit 1c952d3b0e
21 changed files with 39 additions and 39 deletions
+1 -1
View File
@@ -322,7 +322,7 @@ void FileSinkGui::updateWithStreamTime()
QTime t(0, 0, 0, 0);
t = t.addSecs(t_sec);
t = t.addMSecs(t_msec);
QString s_timems = t.toString("hh:mm:ss.zzz");
QString s_timems = t.toString("HH:mm:ss.zzz");
ui->relTimeText->setText(s_timems);
}