------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. http://bugs.kde.org/show_bug.cgi?id=95767 Summary: Classview shows incomplete names of the classes defined in a macro Product: kdevelop Version: 3.1.2 Platform: RedHat RPMs OS/Version: Linux Status: UNCONFIRMED Severity: normal Priority: NOR Component: general AssignedTo: kdevelop-bugs kdevelop org ReportedBy: zvonsully yahoo com Version: 3.1.2 (using KDE KDE 3.3.2) Installed from: RedHat RPMs OS: Linux If I use a macro for declaring a class: --------------------------------- #define ClassDefiner(name) \ class T##name##CLS {}; ClassDefiner(int) --------------------------------- the Class Inheritance Diagram and the Classview will say that class "TinCLS" is defined not"TintCLS"(it deletes the last caraceter from the macro argument,in this example 't' from "int")