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 100349 - Inherited members
Summary: Inherited members
Status: NEW
Alias: None
Product: cnd
Classification: Unclassified
Component: Code Completion (show other bugs)
Version: 5.x
Hardware: All All
: P3 blocker (vote)
Assignee: Vladimir Voskresensky
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2007-04-09 13:57 UTC by avp
Modified: 2009-09-25 14:06 UTC (History)
0 users

See Also:
Issue Type: ENHANCEMENT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description avp 2007-04-09 13:57:47 UTC
I have this source
 class A
 {
 public:
 int aInt;
 };

 class B
 {
 public:
 int aInt;
 };

 class C : public A, public B
 {
 public:
 int aInt;
 };

 int main()
 {
 C cVar;
 c. //here CodeComplete show
    //three member aInt
    //Here codeComplete show three members of aInt it would be desirable that
was with the complete skilled name
    // B::aInt
    // A::aInt
    // C::aInt
  }
And when inherited is virtual (in this case aInt is one) CodeComplete show one
member
>
Comment 1 Vladimir Voskresensky 2009-09-25 14:06:14 UTC
consider for the next release due to lack of resources