mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-11-08 09:52:28 +01:00
codetools: identifier completion: removed property variable form useful identifiers for class interfaces and global properties
git-svn-id: trunk@13339 -
This commit is contained in:
parent
b9e3bc84b4
commit
c436ebb4f4
@ -1032,7 +1032,8 @@ begin
|
||||
0,nil,nil,ctnProcedure);
|
||||
CurrentIdentifierList.Add(NewItem);
|
||||
end;
|
||||
if UpAtomIs('READ') or UpAtomIs('WRITE') then begin
|
||||
if (UpAtomIs('READ') or UpAtomIs('WRITE'))
|
||||
and (Context.Node.GetNodeOfType(ctnClass)<>nil) then begin
|
||||
// add the default class completion 'read'/'write' specifier variable
|
||||
NewItem:=TIdentifierListItem.Create(
|
||||
icompUnknown,true,0,
|
||||
|
||||
Loading…
Reference in New Issue
Block a user