This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 127985 - *Find Usages* overridden functions are not searched correctly
Summary: *Find Usages* overridden functions are not searched correctly
Status: RESOLVED FIXED
Alias: None
Product: cnd
Classification: Unclassified
Component: -- Other -- (show other bugs)
Version: 6.x
Hardware: All All
: P2 blocker (vote)
Assignee: Vladimir Voskresensky
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2008-02-21 09:09 UTC by Vladimir Voskresensky
Modified: 2008-02-28 12:52 UTC (History)
0 users

See Also:
Issue Type: DEFECT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Vladimir Voskresensky 2008-02-21 09:09:11 UTC
class A {
public:
    virtual void foo();
    void fooI(int i);
};

class B : public A {
public:
    void foo();
    virtual void fooI(int i);
};

class C : public B {
public:
    void foo();
    void fooI(int i);
};

void moo() {
    B b;
    b.foo();
    b.fooI(1);
    A a;
    a.foo();
    a.fooI(1);
    C c;
    c.foo();
    c.fooI(1);
}

for A.foo() and B.fooI() it is not possible to find overriding methods