mirror of
https://github.com/moparisthebest/Simba
synced 2024-11-22 09:12:19 -05:00
Little style fix in code completion.
This commit is contained in:
parent
1b44904328
commit
87440431fb
@ -985,9 +985,12 @@ procedure TCodeInsight.Proposal_AddDeclaration(Item: TDeclaration; ItemList, Ins
|
||||
begin
|
||||
Result := 'Enumeration';
|
||||
if (Item.Items.Count > 0) then
|
||||
begin
|
||||
Result := Result + '(' + Item.Items[0].ShortText;
|
||||
if (Item.Items.Count > 1) then
|
||||
Result := Result + '..' + Item.Items[Item.Items.Count - 1].ShortText + ')';
|
||||
Result := Result + '..' + Item.Items[Item.Items.Count - 1].ShortText;
|
||||
Result := Result + ')';
|
||||
end;
|
||||
end;
|
||||
|
||||
procedure AddEnums(Item: {TCodeInsight}TDeclaration; ItemList, InsertList: TStrings); overload;
|
||||
|
Loading…
Reference in New Issue
Block a user