mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-07-11 22:03:01 -06:00
ide: Fixed issue with context goto (to template base class)
git-svn-id: svn://ultimatepp.org/upp/trunk@7745 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
parent
6f6de0b120
commit
768d47b4ef
1 changed files with 6 additions and 1 deletions
|
|
@ -52,7 +52,12 @@ void Scopefo::Bases(int i, Vector<int>& g)
|
|||
for(;;) {
|
||||
if(*q == ';' || *q == '\0') {
|
||||
if(b < q) {
|
||||
int nq = base.Find(String(b, q));
|
||||
String h = String(b, q);
|
||||
int q = h.Find('<');
|
||||
if(q >= 0)
|
||||
h.Trim(q);
|
||||
h = TrimBoth(h);
|
||||
int nq = base.Find(h);
|
||||
if(nq >= 0)
|
||||
g.Add(nq);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue