mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-16 20:49:30 +02:00
IDE: fpdoc editor: ignore spaces when searching elements
git-svn-id: trunk@36254 -
This commit is contained in:
parent
b52417fbf8
commit
39b3b28657
@ -692,7 +692,7 @@ begin
|
||||
Result := Result.FirstChild;
|
||||
while (Result <> nil) do begin
|
||||
if (Result.NodeName = 'topic') and (Result is TDomElement) and
|
||||
(SysUtils.CompareText(TDomElement(Result).GetAttribute('name'), Name) = 0)
|
||||
(CompareTextIgnoringSpace(TDomElement(Result).GetAttribute('name'), Name,false) = 0)
|
||||
then
|
||||
exit;
|
||||
Result := Result.NextSibling;
|
||||
|
Loading…
Reference in New Issue
Block a user