mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-31 05:00:35 +02:00
codetools: omit forward classes in example
git-svn-id: trunk@11024 -
This commit is contained in:
parent
bc2699b1fb
commit
ecfaa83c15
@ -47,7 +47,8 @@ begin
|
||||
end;
|
||||
Node:=Tool.Tree.Root;
|
||||
while (Node<>nil) do begin
|
||||
if Node.Desc=ctnClass then begin
|
||||
if (Node.Desc=ctnClass)
|
||||
and ((Node.SubDesc and ctnsForwardDeclaration)=0) then begin
|
||||
CurClassName:=Tool.ExtractClassName(Node,false);
|
||||
writeln(CurClassName);
|
||||
end;
|
||||
|
Loading…
Reference in New Issue
Block a user