mirror of
https://github.com/gnustep/apps-projectcenter.git
synced 2025-03-13 22:23:10 +00:00
Enable parsing of obj-c++
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/projectcenter/trunk@38627 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
9fb7764ebc
commit
fcd0c869e2
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
2015-06-12 Riccardo Mottola <rm@gnu.org>
|
||||
|
||||
* Modules/Editors/ProjectCenter/PCEditor.m
|
||||
Enable parsing of obj-c++
|
||||
|
||||
2015-06-12 Riccardo Mottola <rm@gnu.org>
|
||||
|
||||
* Modules/Editors/ProjectCenter/Resources/Info.table
|
||||
|
|
|
@ -550,7 +550,7 @@
|
|||
[aParser setString:[_storage string]];
|
||||
|
||||
// If item is .m or .h file show class list
|
||||
if ([[item pathExtension] isEqualToString:@"m"]
|
||||
if ([[item pathExtension] isEqualToString:@"m"] || [[item pathExtension] isEqualToString:@"mm"]
|
||||
|| [[item pathExtension] isEqualToString:@"h"])
|
||||
{
|
||||
ASSIGN(parserClasses, [aParser classNames]);
|
||||
|
|
Loading…
Reference in a new issue