From kdevelop-bugs Fri Dec 24 08:03:51 2004 From: kdevelop-bugs-admin () barney ! cs ! uni-potsdam ! de Date: Fri, 24 Dec 2004 08:03:51 +0000 To: kdevelop-bugs Subject: [Bug 95767] New: Classview shows incomplete names of the classes defined in a macro Message-Id: <20041224090350.95767.zvonsully () yahoo ! com> X-MARC-Message: https://marc.info/?l=kdevelop-bugs&m=118306933206095 ------- 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")