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 ...@@ -366,8 +366,10 @@ class ClassHierarchyContext : public TemplateStructIntf
class NestingNodeContext : public TemplateStructIntf class NestingNodeContext : public TemplateStructIntf
{ {
public: public:
NestingNodeContext(Definition *,bool addClasses); NestingNodeContext(const NestingNodeContext *parent,
Definition *,int index,int level,bool addClasses);
~NestingNodeContext(); ~NestingNodeContext();
QCString id() const;
// TemplateStructIntf methods // TemplateStructIntf methods
virtual TemplateVariant get(const char *name) const; virtual TemplateVariant get(const char *name) const;
...@@ -382,7 +384,7 @@ class NestingNodeContext : public TemplateStructIntf ...@@ -382,7 +384,7 @@ class NestingNodeContext : public TemplateStructIntf
class NestingContext : public TemplateListIntf class NestingContext : public TemplateListIntf
{ {
public: public:
NestingContext(); NestingContext(const NestingNodeContext *parent,int level);
~NestingContext(); ~NestingContext();
// TemplateListIntf // TemplateListIntf
......
...@@ -784,7 +784,7 @@ QCString FTVHelp::generateIndentLabel(FTVNode *n,int level) ...@@ -784,7 +784,7 @@ QCString FTVHelp::generateIndentLabel(FTVNode *n,int level)
{ {
result=generateIndentLabel(n->parent,level+1); result=generateIndentLabel(n->parent,level+1);
} }
result+=QCString().sprintf("%d_",n->index); result+=QCString().setNum(n->index)+"_";
return result; 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