From 1802fda674e4cc497613db200fb9a79bcc09e932 Mon Sep 17 00:00:00 2001 From: mattias Date: Mon, 7 May 2012 16:16:17 +0000 Subject: [PATCH] codetools: GetSmartHint: ^, .., file of, class of git-svn-id: trunk@37215 - --- components/codetools/finddeclarationtool.pas | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/components/codetools/finddeclarationtool.pas b/components/codetools/finddeclarationtool.pas index 30ebc12c1e..e843c96219 100644 --- a/components/codetools/finddeclarationtool.pas +++ b/components/codetools/finddeclarationtool.pas @@ -2266,7 +2266,8 @@ begin Result += ': '; end; case TypeNode.Desc of - ctnIdentifier, ctnSpecialize, ctnSpecializeType: + ctnIdentifier, ctnSpecialize, ctnSpecializeType, + ctnPointertype, ctnRangeType, ctnFileType, ctnclassOfType: begin Result += ExtractNode(TypeNode, [phpCommentsToSpace]); end;