From kdevelop-bugs Sat Aug 19 14:55:11 2006 From: Michael Williamson Date: Sat, 19 Aug 2006 14:55:11 +0000 To: kdevelop-bugs Subject: [Bug 132643] New: Make member does not work with multiple defines Message-Id: <20060819165510.132643.mswilliamson () uwaterloo ! ca> X-MARC-Message: https://marc.info/?l=kdevelop-bugs&m=118306952710189 ------- 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=132643 Summary: Make member does not work with multiple defines Product: kdevelop Version: 3.3.3 Platform: Gentoo Packages OS/Version: Linux Status: UNCONFIRMED Severity: normal Priority: NOR Component: general AssignedTo: kdevelop-bugs kdevelop org ReportedBy: mswilliamson uwaterloo ca Version: 3.3.3 (using KDE KDE 3.5.4) Installed from: Gentoo Packages OS: Linux When there are multiple defines in a file, the make member button disappears. Here is an example: #ifndef __FILE_H_INCLUDED__ #define __FILE_H_INCLUDED__ #ifdef HAVE_CONFIG_H #include "config.h" #endif #ifdef HAVE_SOMELIB class x { void foo(); }; #endif #endif When right-clicking on foo there is no make member option.