| Summary: | global structure does not display all elements in the Class tools | ||
|---|---|---|---|
| Product: | [Applications] kdevelop | Reporter: | Craig A. Taylor <ctaylor2> |
| Component: | Language Support: CPP (old) | Assignee: | KDevelop-Devel List <kdevelop-devel> |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | ||
| Priority: | NOR | ||
| Version First Reported In: | 2.1 | ||
| Target Milestone: | --- | ||
| Platform: | unspecified | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
Fixed in Gideon CVS. Moving all the bugs from the CPP Parser. It was not well defined the difference between it and C++ Language Support and people kept reporting in both places indistinctively |
Version: 2.1 (using KDE 3.0.0) Compiler: gcc version 2.96 20000731 (Red Hat Linux 7.3 2.96-110) OS: Linux (i686) release 2.4.18-10 I created a self-referencing structure typedef struct link{ struct link* thousands; struct link* hundreds; struct link* tens; struct link* ones; struct link* nextLink; node* nodePtr; } linkList; In the global class tool the structure only displays as a structure element nodePtr. Use of the structure in the program works fine. A elements compile and reference correctly. The popup list of elements in the editor also does not display the missing elements