mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-29 12:20:28 +02:00
* Simplified formatting of timeinterval strings, bug #18763
git-svn-id: trunk@17424 -
This commit is contained in:
parent
2c94ef0f09
commit
0e56e188f8
@ -506,7 +506,7 @@ var
|
||||
begin
|
||||
DecodeTime(Time,hour,minute,second,millisecond);
|
||||
hour := hour + (trunc(Time) * 24);
|
||||
result := Format('%.2d',[hour]) + ':' + format('%.2d',[minute]) + ':' + format('%.2d',[second]) + '.' + format('%.3d',[millisecond]);
|
||||
result := Format('%.2d:%.2d:%.2d:%.3d',[hour,minute,second,millisecond]);
|
||||
end;
|
||||
|
||||
{ TSQLConnection }
|
||||
|
@ -336,7 +336,7 @@ begin
|
||||
// Format the datetime in the format hh:nn:ss.zzz, where the hours can be bigger then 23.
|
||||
DecodeTime(d,hour,minute,second,millisecond);
|
||||
hour := hour + (trunc(d) * 24);
|
||||
result := Format('%.2d',[hour]) + ':' + format('%.2d',[minute]) + ':' + format('%.2d',[second]) + '.' + format('%.3d',[millisecond]);
|
||||
result := Format('%.2d:%.2d:%.2d:%.3d',[hour,minute,second,millisecond]);
|
||||
end;
|
||||
|
||||
function TimeStringToDateTime(d: String): TDateTime;
|
||||
|
Loading…
Reference in New Issue
Block a user