| Summary: | auto-generated accessor methods do not contain 'ClassName::' in method definition | ||
|---|---|---|---|
| Product: | [Applications] kdevelop | Reporter: | Ernestas <ernestas.vaiciukevicius> |
| Component: | Language Support: CPP (old) | Assignee: | kdevelop-bugs-null |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | ||
| Priority: | NOR | ||
| Version First Reported In: | unspecified | ||
| Target Milestone: | --- | ||
| Platform: | Debian testing | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
| Attachments: | fix for non-inline C++ getter/setter generation | ||
|
Description
Ernestas
2005-05-10 07:25:27 UTC
Kdevelop in Ubuntu Hoary has the bug too: the generated code is
type accessor() {
return val;
}
and should be
type ClassName::accessor() {
return val;
}
Created attachment 17383 [details]
fix for non-inline C++ getter/setter generation
I think It fixes getter/setter generation (at least for me)..
The same problem with SVN revision 578441 in branch svn://anonsvn.kde.org/home/kde/branches/kdevelop/3.4 The patch works fine for me too, thank you! Confirmed. Patch works. Committed revision 581603. Thanks! |