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 251420 - incorrect "implement" for methods of inner classes
Summary: incorrect "implement" for methods of inner classes
Status: RESOLVED FIXED
Alias: None
Product: cnd
Classification: Unclassified
Component: Code Completion (show other bugs)
Version: 8.1
Hardware: All All
: P3 normal (vote)
Assignee: Alexander Simon
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2015-03-25 15:19 UTC by Vladimir Voskresensky
Modified: 2015-03-27 03:22 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 2015-03-25 15:19:31 UTC
in header.h:
class Outer {
  class Inner {
    void foo();
  };

  void boo();
};

in source.cpp:

#include "header.h"

void Outer::boo() {
  
}

| // press completion here and choose Inner::foo() - implement

expected
void Outer::Inner::foo() {

}
got:
void Inner::foo() {

}
Comment 1 Vladimir Voskresensky 2015-03-25 15:20:07 UTC
Sasha, could you fix it, please.
Comment 2 Alexander Simon 2015-03-26 09:39:05 UTC
fixed, change set:
http://hg.netbeans.org/cnd-main/rev/ad35a7ddb999
Comment 3 Quality Engineering 2015-03-27 03:22:09 UTC
Integrated into 'main-silver', will be available in build *201503270001* on http://bits.netbeans.org/dev/nightly/ (upload may still be in progress)

Changeset: http://hg.netbeans.org/main-silver/rev/ad35a7ddb999
User: Alexander Simon <alexvsimon@netbeans.org>
Log: fixed Bug #251420 - incorrect "implement" for methods of inner classes