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 102445 - Code Completion listbox should disappear after "="
Summary: Code Completion listbox should disappear after "="
Status: CLOSED WORKSFORME
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-25 10:03 UTC by soldatov
Modified: 2007-12-27 13:41 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 2007-04-25 10:03:31 UTC
Steps:
- Create empty C file
- Type in editor (not paste from buffer):
--------------------------------------------
struct S {
  int i;
  int j;
};

int main() {
  int a;
  struct S s1;
  s1.i=a;
}
--------------------------------------------
==> When i type "." then code completion listbox appears. When i type ";" then
listbox disappear but "argc" item from code completion listbox appears in text
and i see in editor "s1.i=argc" instead of "s1.i=a;"
Comment 1 soldatov 2007-04-25 10:25:29 UTC
Sorry It was wrong sample.

Should be:
- Create empty C file
- Type in editor (not paste from buffer):
--------------------------------------------
struct S {
  int i;
  int j;
};

int a;

int main() {
  int a1;
  struct S s1;
  s1.i=a;
}

--------------------------------------------
==> When i type "." then code completion listbox appears. When i type ";" then
listbox disappear but "a1" item from code completion listbox appears in text
and i see in editor "s1.i=a1" instead of "s1.i=a;"
Comment 2 Alexander Pepin 2007-12-27 13:41:03 UTC
It seems to be fixed in NB6.0