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 220977 - Missing Link in "Call Graph"
Summary: Missing Link in "Call Graph"
Status: RESOLVED DUPLICATE of bug 223032
Alias: None
Product: cnd
Classification: Unclassified
Component: Code Model (show other bugs)
Version: 7.2.1
Hardware: PC Linux
: P3 normal (vote)
Assignee: issues@cnd
URL:
Keywords:
Depends on: 221220
Blocks:
  Show dependency tree
 
Reported: 2012-10-28 18:19 UTC by der-muell
Modified: 2014-11-20 11:05 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 der-muell 2012-10-28 18:19:54 UTC
Product Version = NetBeans IDE 7.2.1 (Build 201210100934)
Operating System = Linux version 3.2.0-23-generic running on amd64
Java; VM; Vendor = 1.6.0_24
Runtime = OpenJDK 64-Bit Server VM 20.0-b12

Hi,

In the window "Call Graph" there is no arrow drawn, although the constructor of an object is implicit called.
Example 1: main.cpp: 
{
...
newClass test;
...
}

In my opinion the constructor is implicit called and the call graph has to show it (to draw it)! 
The call graph only draws the connection if I call the constructor expicit:
Example 2: main.cpp: 
{
...
newClass * test = new newClass();
...
}

Is that right?

Thanks,

Sebastian
Comment 1 Vladimir Voskresensky 2014-11-20 11:05:15 UTC
it's the same as "missing constructors" in issue #223032

*** This bug has been marked as a duplicate of bug 223032 ***