mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-08 19:58:18 +02:00
DocEditor: Keep contents of SeeAlso section when saving the description file. Issue #34631, patch from Oleg.
git-svn-id: trunk@60823 -
This commit is contained in:
parent
67258421da
commit
979beb76a8
@ -431,7 +431,7 @@ Function TElementEditor.CurrentXML : String;
|
||||
|
||||
Var
|
||||
I : Integer;
|
||||
S,L,LT : String;
|
||||
S,L,LT,T : String;
|
||||
|
||||
begin
|
||||
Result:='';
|
||||
@ -446,9 +446,9 @@ begin
|
||||
LT:=Trim(lbxSeeAlso.Items[i]);
|
||||
if (LT<>'') then
|
||||
begin
|
||||
SplitLinkText(LT,L,LT);
|
||||
If (LT<>'') then
|
||||
S:=S+'<link id="'+L+'">'+LT+'</link>'
|
||||
SplitLinkText(LT,L,T);
|
||||
If (T<>'') then
|
||||
S:=S+'<link id="'+L+'">'+T+'</link>'
|
||||
else
|
||||
S:=S+'<link id="'+L+'"/>';
|
||||
end;
|
||||
|
Loading…
Reference in New Issue
Block a user