File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
PythonForDelphi/Components/Sources/Core Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -3175,7 +3175,7 @@ procedure MaskFPUExceptions(ExceptionsMasked : boolean;
31753175 Converts line breaks to LF and optionally adds a line break at the end
31763176*)
31773177function CleanString (const s : AnsiString; AppendLF : Boolean = True) : AnsiString; overload;
3178- function CleanString (const s : string ; AppendLF : Boolean = True) : string ; overload;
3178+ function CleanString (const s : UnicodeString ; AppendLF : Boolean = True) : UnicodeString ; overload;
31793179
31803180// #######################################################
31813181// ## ##
@@ -9860,7 +9860,7 @@ function CleanString(const s : AnsiString; AppendLF : Boolean) : AnsiString;
98609860 Result := Result + LF;
98619861end ;
98629862
9863- function CleanString (const s : string ; AppendLF : Boolean) : string ;
9863+ function CleanString (const s : UnicodeString ; AppendLF : Boolean) : UnicodeString ;
98649864begin
98659865 Result := AdjustLineBreaks(s, tlbsLF);
98669866 if AppendLF and (result[length(result)] <> LF) then
You can’t perform that action at this time.
0 commit comments