From 3581e9d7e488ebf46e9b83f52c3f721958eea22e Mon Sep 17 00:00:00 2001 From: mattias Date: Tue, 9 Jan 2018 18:19:43 +0000 Subject: [PATCH] codetools: fixed compile git-svn-id: trunk@57026 - --- components/codetools/identcompletiontool.pas | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/codetools/identcompletiontool.pas b/components/codetools/identcompletiontool.pas index aebba2d49e..14341c9b47 100644 --- a/components/codetools/identcompletiontool.pas +++ b/components/codetools/identcompletiontool.pas @@ -631,7 +631,7 @@ begin cPriorityCount := 0; while AnAVLNode<>nil do begin CurItem:=TIdentifierListItem(AnAVLNode.Data); - if not CurItem.Identifier.IsEmpty then + if CurItem.Identifier<>'' then begin if ComparePrefixIdent(PChar(Pointer(Prefix)),PChar(Pointer(CurItem.Identifier))) then begin