mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-09-27 10:29:12 +02:00
codetools: GetSmartHint: ctnSetType: limitless
git-svn-id: trunk@49836 -
This commit is contained in:
parent
ca9e9967a2
commit
fca3ce09ec
@ -2794,10 +2794,10 @@ begin
|
||||
if (Length(Result) > 0) and (Result[Length(Result)] = ';') then//delete last ";" from set
|
||||
Delete(Result, Length(Result), 1);
|
||||
|
||||
Result += ' = ['+Copy(ProceedWithSmartHint(Self), 4, 1000)+']';
|
||||
Result += ' = ['+Copy(ProceedWithSmartHint(Self), 4, High(Integer))+']';
|
||||
SetStr := ProceedWithSmartHint(Self);
|
||||
if (Length(SetStr) > 2) and (SetStr[2] = '=') then
|
||||
SetStr := Copy(SetStr, 4, 1000);
|
||||
SetStr := Copy(SetStr, 4, High(Integer));
|
||||
if (SetStr <> '') then
|
||||
Result += ' = ['+SetStr+']';
|
||||
end;
|
||||
|
Loading…
Reference in New Issue
Block a user