diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2015-03-28 10:24:38 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2015-03-28 10:24:38 (GMT) |
commit | 797844466cf49d827c32dc8e4c83e6a854d8ad16 (patch) | |
tree | c38d885f997fb5c37ad1fdfbff7ae2f4b8f92345 | |
parent | 78e1bdfca35221c744684d8d2a0b5b234836a49c (diff) | |
parent | 4438e24b478de1fd97ccc81a3a9f7651124e1c63 (diff) | |
download | Doxygen-797844466cf49d827c32dc8e4c83e6a854d8ad16.zip Doxygen-797844466cf49d827c32dc8e4c83e6a854d8ad16.tar.gz Doxygen-797844466cf49d827c32dc8e4c83e6a854d8ad16.tar.bz2 |
Merge pull request #323 from ppescher/master
fix enum brief description in RTF output
-rw-r--r-- | src/doxygen.cpp | 2 | ||||
-rw-r--r-- | src/index.cpp | 2 | ||||
-rw-r--r-- | src/memberlist.cpp | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/doxygen.cpp b/src/doxygen.cpp index 17ec15d..09e92a4 100644 --- a/src/doxygen.cpp +++ b/src/doxygen.cpp @@ -11672,7 +11672,7 @@ void generateOutput() QString oldDir = QDir::currentDirPath(); QDir::setCurrent(Config_getString("HTML_OUTPUT")); portable_sysTimerStart(); - if (portable_system(Config_getString("HHC_LOCATION"), "index.hhp", FALSE)) + if (portable_system(Config_getString("HHC_LOCATION"), "index.hhp", Debug::isFlagSet(Debug::ExtCmd))) { err("failed to run html help compiler on index.hhp\n"); } diff --git a/src/index.cpp b/src/index.cpp index 2cb7de2..e7ba8e7 100644 --- a/src/index.cpp +++ b/src/index.cpp @@ -4140,7 +4140,7 @@ static void writeIndexHierarchyEntries(OutputList &ol,const QList<LayoutNavEntry case LayoutNavEntry::Classes: if (annotatedClasses>0 && addToIndex) { - Doxygen::indexList->addContentsItem(TRUE,lne->title(),0,0,0); + Doxygen::indexList->addContentsItem(TRUE,lne->title(),0,"annotated",0); Doxygen::indexList->incContentsDepth(); needsClosing=TRUE; } diff --git a/src/memberlist.cpp b/src/memberlist.cpp index fae285f..64fe44a 100644 --- a/src/memberlist.cpp +++ b/src/memberlist.cpp @@ -409,7 +409,6 @@ void MemberList::writePlainDeclarations(OutputList &ol, { ol.endDoxyAnchor(md->getOutputFileBase(),md->anchor()); } - ol.endMemberItem(); if (!md->briefDescription().isEmpty() && Config_getBool("BRIEF_MEMBER_DESC")) { DocRoot *rootNode = validatingParseDoc( @@ -437,6 +436,7 @@ void MemberList::writePlainDeclarations(OutputList &ol, delete rootNode; } ol.endMemberDeclaration(md->anchor(),inheritId); + ol.endMemberItem(); } md->warnIfUndocumented(); break; |