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 251553 - IDE displays keywords in Code Completion list after . and ->
Summary: IDE displays keywords in Code Completion list after . and ->
Status: RESOLVED FIXED
Alias: None
Product: cnd
Classification: Unclassified
Component: Code Completion (show other bugs)
Version: 8.1
Hardware: PC Solaris
: P3 normal (vote)
Assignee: Alexander Simon
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2015-04-01 09:14 UTC by soldatov
Modified: 2015-04-02 03:21 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 soldatov 2015-04-01 09:14:57 UTC
class A {
public:
    A() {}
    A(const A& orig) {}
    virtual ~A() {}
private:

};


int main(int argc, char** argv) {
    A a1;
    A a2 = new A();
    a1. // I don't expect keywords in Code Completion list in this line
    a2-> // I don't expect keywords in Code Completion list in this line
    return 0;
}
Comment 1 Alexander Simon 2015-04-01 10:59:56 UTC
fixed, change set:
http://hg.netbeans.org/cnd-main/rev/2eb164f71439
Comment 2 Quality Engineering 2015-04-02 03:21:29 UTC
Integrated into 'main-silver', will be available in build *201504020001* on http://bits.netbeans.org/dev/nightly/ (upload may still be in progress)

Changeset: http://hg.netbeans.org/main-silver/rev/2eb164f71439
User: Alexander Simon <alexvsimon@netbeans.org>
Log: fixed Bug #251551 - IDE doesn't display keywords from second completion list
and Bug #251553 IDE displays keywords in Code Completion list after . and ->