Navigation Bar shows incorrect class name in C Based Languages

Started by Anonymous, October 07, 2011, 11:18:49 AM

Previous topic - Next topic

Anonymous

Hi, all

While I was evaluating hippoedit with some simple C++ classes.
I noticed the class name would display incorrectly in the Navigation Bar when some macros are placed after the class keyword.

For Example:

class API ClassOne {}


The Navigation Bar would display "API" instead of "ClassOne"

After some digging around, I think the problem is in the cbase_spec.xml .

The regular expression would find a match on the first word.

So I changed the REGEX
from:
Code (xml) Select
<Label group="Class" match="class\s+(\w+)[^\;{]*\{" name="\1" descr="class \1" scope="1" image="5" style="data_types"/>
to
Code (xml) Select
<Label group="Class" match="class(\s+(\w+))*[^\;{]*\{" name="\1" descr="class \1" scope="1" image="5" style="data_types"/>

Now the Navigation Bar displays the class name "ClassOne".

I know nothing about regular expressions, I just searched on the net. So I don't know if this is correct, but it seems to work.

alex

Thanks for checking this an help with a schema.
I think more correct will be:
Code (xml) Select
<Label group="Class" match="class(\s+(\w+))+[^\;{]*\{" name="\1" descr="class \1" scope="1" image="5" style="data_types"/>
because at least class name should be presented. But I will check and will update schema in installation and on site (done).
HippoEDIT team
[url="http://www.hippoedit.com/"]http://www.hippoedit.com/[/url]