lazsvnpkg: fixed combining date+time

git-svn-id: branches/fixes_1_4@47630 -
This commit is contained in:
mattias 2015-02-07 12:06:27 +00:00
parent 74f9e29f05
commit 30cb5eed7b

View File

@ -261,7 +261,7 @@ begin
n := StrToInt(Copy(ADateTime, 15, 2));
s := StrToInt(Copy(ADateTime, 18, 2));
Result := EncodeDate(y,m,d) + EncodeTime(h,n,s,0);
Result := ComposeDateTime( EncodeDate(y,m,d), EncodeTime(h,n,s,0));
end;
function SortPathAscending(const Item1, Item2: TSVNStatusItem): Integer;