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 88437 - Code completion should display unnamed structs and enums more correctly
Summary: Code completion should display unnamed structs and enums more correctly
Status: NEW
Alias: None
Product: cnd
Classification: Unclassified
Component: Code Completion (show other bugs)
Version: 5.x
Hardware: All All
: P4 blocker (vote)
Assignee: Vladimir Voskresensky
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2006-11-01 16:18 UTC by soldatov
Modified: 2012-02-16 09:23 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 2006-11-01 16:18:50 UTC
Open this file:
------------------------------------------------------
struct {
    int i;
    int j;
} s;

enum {ONE, TWO, THREE} e;

int main() {
    
    return 0;
}

------------------------------------------------------
Code completion listbox in 'main' function contains 'e e' and 's s' items. I
think Code completion listbox should contains '<unnamed> e' and '<unnamed> s'
(or similar items).