| Summary: | "typedef struct" completion missing | ||
|---|---|---|---|
| Product: | [Applications] kdevelop | Reporter: | Jay <joerg> |
| Component: | Code completion | Assignee: | kdevelop-bugs-null |
| Status: | RESOLVED FIXED | ||
| Severity: | wishlist | CC: | florin.tene, kde, moloh, trevor |
| Priority: | NOR | ||
| Version First Reported In: | git master | ||
| Target Milestone: | --- | ||
| Platform: | Gentoo Packages | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
|
Description
Jay
2003-08-22 21:25:32 UTC
On kdevelop 3.2.0 i have problem about typedefs. Should i send another bug?
ie:
typedef struct {
int data;
} name;
code completition don't work on name type variables but:
struct structName {
int data;
};
typedef structName name;
now name variables have completition.
*** Bug 137746 has been marked as a duplicate of this bug. *** The 2nd comment can be reproduced on 3.4 svn. *** Bug 146251 has been marked as a duplicate of this bug. *** I like to write all my code with typedefs, like:
typedef struct {
int data;
} name;
But codecompletition does not work with e.g.
function (name *my_name)
{
my_name->[STRG]+[SPACE] .... does not work
}
fixed in kdev4 |