diff options
Diffstat (limited to 'src/classlist.cpp')
-rw-r--r-- | src/classlist.cpp | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/src/classlist.cpp b/src/classlist.cpp index 7a52556..d538cbb 100644 --- a/src/classlist.cpp +++ b/src/classlist.cpp @@ -102,15 +102,15 @@ void ClassSDict::writeDeclaration(OutputList &ol,const ClassDef::CompoundType *f } ol.startMemberItem(FALSE); QCString tmp = cd->compoundTypeString(); - QCString cname; - if (Config_getBool("OPTIMIZE_OUTPUT_JAVA")) - { - cname = substitute(cd->className(),"::","."); - } - else - { - cname = cd->className(); - } + QCString cname = cd->displayName(); + //if (Config_getBool("OPTIMIZE_OUTPUT_JAVA")) + //{ + // cname = substitute(cd->className(),"::","."); + //} + //else + //{ + // cname = cd->className(); + //} ol.writeString(tmp); ol.writeString(" "); ol.insertMemberAlign(); @@ -141,12 +141,12 @@ void ClassSDict::writeDeclaration(OutputList &ol,const ClassDef::CompoundType *f { ol.pushGeneratorState(); ol.disableAllBut(OutputGenerator::Html); - ol.endEmphasis(); + //ol.endEmphasis(); ol.docify(" "); ol.startTextLink(cd->getOutputFileBase(),"_details"); ol.parseText(theTranslator->trMore()); ol.endTextLink(); - ol.startEmphasis(); + //ol.startEmphasis(); ol.popGeneratorState(); } ol.endMemberDescription(); |