diff --git a/components/codetools/finddeclarationtool.pas b/components/codetools/finddeclarationtool.pas index 8c45078e10..fb014d3064 100644 --- a/components/codetools/finddeclarationtool.pas +++ b/components/codetools/finddeclarationtool.pas @@ -1118,8 +1118,11 @@ function IntegerTypesOrderList: TTypeAliasOrderList; begin if FIntegerTypesOrderList=nil then FIntegerTypesOrderList:=TTypeAliasOrderList.Create([ - 'Int64', 'QWord', 'SizeInt', 'LongInt', 'LongWord', 'Integer', 'Cardinal', - 'SmallInt', 'Word', 'ShortInt', 'Byte']); + 'Int64', 'QWord', + 'NativeInt', 'IntPtr', 'SizeInt', 'NativeUInt', 'UIntPtr', + 'Int32', 'Integer', 'LongInt', 'UInt32', 'Cardinal', 'LongWord', + 'Int16', 'SmallInt', 'UInt16', 'Word', + 'Int8', 'ShortInt', 'UInt8', 'Byte']); Result := FIntegerTypesOrderList; end;