bug fix issue #77
This commit is contained in:
parent
30430389fb
commit
b2c2b4a4a8
|
|
@ -822,7 +822,7 @@ namespace CodeCompletion
|
|||
}
|
||||
else names.Add(ss);
|
||||
}
|
||||
else
|
||||
else if (members != null)
|
||||
foreach (SymScope ss in members)
|
||||
if (string.Compare(ss.si.name, name, !CodeCompletionController.CurrentParser.LanguageInformation.CaseSensitive) == 0)
|
||||
if (ss.loc != null && loc != null && check_for_def && cur_line != -1 && cur_col != -1)
|
||||
|
|
|
|||
Loading…
Reference in a new issue