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 192123 - Array elements are shown incorrectly (only indexes)
Summary: Array elements are shown incorrectly (only indexes)
Status: RESOLVED FIXED
Alias: None
Product: cnd
Classification: Unclassified
Component: Debugger (show other bugs)
Version: 7.0
Hardware: PC Other
: P2 normal (vote)
Assignee: Egor Ushakov
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2010-11-18 17:28 UTC by Alexander Pepin
Modified: 2010-11-25 06:18 UTC (History)
1 user (show)

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 Alexander Pepin 2010-11-18 17:28:05 UTC
This is a regression and a usability issue. Now it works correctly only with dbx (OSS IDE).
Now array elements for int a[3], b[2][2] are shown as:
a
 0
 1
 2
b
 0
  0
  1
 1
  0
  1

but they should be:
a
 a[0]
 a[1]
...
b
 b[0]
  b[0][0]
  b[0][1]
...
Comment 1 Egor Ushakov 2010-11-24 10:56:44 UTC
*** Bug 192115 has been marked as a duplicate of this bug. ***
Comment 2 Egor Ushakov 2010-11-24 11:25:55 UTC
fixed in:
http://hg.netbeans.org/cnd-main/rev/558d6b5ea753
Comment 3 Quality Engineering 2010-11-25 06:18:54 UTC
Integrated into 'main-golden', will be available in build *201011250001* on http://bits.netbeans.org/dev/nightly/ (upload may still be in progress)
Changeset: http://hg.netbeans.org/main/rev/558d6b5ea753
User: Egor Ushakov <gorrus@netbeans.org>
Log: fixed #192123 (Array elements are shown incorrectly (only indexes))