Commit 196f3951 authored by Dimitri van Heesch's avatar Dimitri van Heesch

More context changes

parent 5af2b7c0
This diff is collapsed.
......@@ -366,8 +366,10 @@ class ClassHierarchyContext : public TemplateStructIntf
class NestingNodeContext : public TemplateStructIntf
{
public:
NestingNodeContext(Definition *,bool addClasses);
NestingNodeContext(const NestingNodeContext *parent,
Definition *,int index,int level,bool addClasses);
~NestingNodeContext();
QCString id() const;
// TemplateStructIntf methods
virtual TemplateVariant get(const char *name) const;
......@@ -382,7 +384,7 @@ class NestingNodeContext : public TemplateStructIntf
class NestingContext : public TemplateListIntf
{
public:
NestingContext();
NestingContext(const NestingNodeContext *parent,int level);
~NestingContext();
// TemplateListIntf
......
......@@ -784,7 +784,7 @@ QCString FTVHelp::generateIndentLabel(FTVNode *n,int level)
{
result=generateIndentLabel(n->parent,level+1);
}
result+=QCString().sprintf("%d_",n->index);
result+=QCString().setNum(n->index)+"_";
return result;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment