diff options
Diffstat (limited to 'src/definition.cpp')
-rw-r--r-- | src/definition.cpp | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/definition.cpp b/src/definition.cpp index 4abf509..fb31731 100644 --- a/src/definition.cpp +++ b/src/definition.cpp @@ -782,7 +782,7 @@ void Definition::writeSourceDef(OutputList &ol,const char *) } else { - err("Error: translation error: invalid markers in trDefinedInSourceFile()\n"); + err("error: translation error: invalid markers in trDefinedInSourceFile()\n"); } } ol.popGeneratorState(); @@ -1075,7 +1075,7 @@ Definition *Definition::findInnerCompound(const char *) void Definition::addInnerCompound(Definition *) { - err("Error: Definition::addInnerCompound() called\n"); + err("error: Definition::addInnerCompound() called\n"); } QCString Definition::qualifiedName() const @@ -1287,6 +1287,10 @@ void Definition::writePathFragment(OutputList &ol) const { ol.writeObjectLink(getReference(),getOutputFileBase(),0,((const PageDef*)this)->title()); } + else if (definitionType()==Definition::TypeClass) + { + ol.writeObjectLink(getReference(),getOutputFileBase(),0,((const ClassDef*)this)->displayName()); + } else { ol.writeObjectLink(getReference(),getOutputFileBase(),0,m_impl->localName); |