mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-07-11 22:03:01 -06:00
ide: Fixed issue with missing function in Assist #1300
git-svn-id: svn://ultimatepp.org/upp/trunk@9117 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
parent
b70f4da040
commit
88e012cb48
1 changed files with 2 additions and 2 deletions
|
|
@ -333,12 +333,12 @@ void AssistEditor::SyncAssist()
|
|||
(typei < 0 || m.typei == typei) &&
|
||||
(pass ? m.uname.StartsWith(uname) : m.name.StartsWith(name)) &&
|
||||
(!destructor || m.kind == DESTRUCTOR && m.scope == current_type + "::")) {
|
||||
int q = include_assist ? -1 : over.Find(m.name);
|
||||
int q = include_assist ? -1 : over.Find(m.qitem);
|
||||
if(q < 0 || over[q] == m.typei && m.scope.GetCount()) {
|
||||
found[i] = true;
|
||||
assist_item_ndx.Add(i);
|
||||
if(q < 0)
|
||||
over.Add(m.name, m.typei);
|
||||
over.Add(m.qitem, m.typei);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue