TurboPower_ipro: Avoid insertion of empty line into word-wrapped long text copied to clipboard. Replace literal "#13#10" by "LineEnding"

git-svn-id: trunk@50135 -
This commit is contained in:
wp 2015-10-21 09:13:42 +00:00
parent 06bdecede0
commit 8b28bc8ddd

View File

@ -9122,10 +9122,12 @@ begin
for i := StartSelIndex to EndSelIndex do begin
CurElem := PIpHtmlElement(FLayouter.FElementQueue[i]);
R := CurElem.WordRect2;
{ wp: removed because this would add an empty line to a long word-wrapped text
if not LFDone and (R.Top <> LastY) then begin
S := S + #13#10;
S := S + LineEnding;
LFDone := True;
end;
}
case CurElem.ElementType of
etWord :
begin
@ -9139,7 +9141,7 @@ begin
end;
etSoftLF..etClearBoth :
if not LFDone then begin
S := S + #13#10;
S := S + LineEnding;
LFDone := True;
end;
end;