Version: 3.2.0 (using KDE KDE 3.4.0) Installed from: Debian testing/unstable Packages Compiler: gcc 3.3 OS: Linux Auto-generated accessor methods do not contain 'ClassName::' in method definition (.cpp file). How to reproduce: select an attribute from class view, from context menu choose 'Generate get/set methods', uncheck 'inline' checkboxes and press ok.
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!