mirror of
https://github.com/doublecmd/doublecmd.git
synced 2026-06-21 09:58:13 +00:00
FIX: DateTime - Unicode issue
This commit is contained in:
parent
d2eb3806c7
commit
d8d3db9ee4
1 changed files with 2 additions and 2 deletions
|
|
@ -128,7 +128,7 @@ type
|
|||
implementation
|
||||
|
||||
uses
|
||||
LCLProc, uLng, uGlobs, uFileProcs, uDCUtils, uOSUtils;
|
||||
LCLProc, FileUtil, uLng, uGlobs, uFileProcs, uDCUtils, uOSUtils;
|
||||
|
||||
function ShowMultiRenameForm(const srcFileList: TFileList):Boolean;
|
||||
var
|
||||
|
|
@ -448,7 +448,7 @@ begin
|
|||
iEnd:= Pos(']', Result);
|
||||
if (iStart = 0) or (iEnd = 0) then Exit;
|
||||
sTmp:= Copy(Result, iStart+1, iEnd-iStart-1);
|
||||
sTmp:= FormatDateTime(sTmp, dtDateTime);
|
||||
sTmp:= SysToUTF8(FormatDateTime(sTmp, dtDateTime));
|
||||
Delete(Result, iStart, iEnd-iStart+1);
|
||||
Insert(sTmp, Result, iStart);
|
||||
until False;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue