From 30cb5eed7b793da4d42a648302d7afff9fb9134e Mon Sep 17 00:00:00 2001 From: mattias Date: Sat, 7 Feb 2015 12:06:27 +0000 Subject: [PATCH] lazsvnpkg: fixed combining date+time git-svn-id: branches/fixes_1_4@47630 - --- components/lazsvnpkg/svnclasses.pas | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/lazsvnpkg/svnclasses.pas b/components/lazsvnpkg/svnclasses.pas index 70275beb63..da7f237a62 100644 --- a/components/lazsvnpkg/svnclasses.pas +++ b/components/lazsvnpkg/svnclasses.pas @@ -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;