summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2015-03-28 10:24:38 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2015-03-28 10:24:38 (GMT)
commit797844466cf49d827c32dc8e4c83e6a854d8ad16 (patch)
treec38d885f997fb5c37ad1fdfbff7ae2f4b8f92345 /src
parent78e1bdfca35221c744684d8d2a0b5b234836a49c (diff)
parent4438e24b478de1fd97ccc81a3a9f7651124e1c63 (diff)
downloadDoxygen-797844466cf49d827c32dc8e4c83e6a854d8ad16.zip
Doxygen-797844466cf49d827c32dc8e4c83e6a854d8ad16.tar.gz
Doxygen-797844466cf49d827c32dc8e4c83e6a854d8ad16.tar.bz2
Merge pull request #323 from ppescher/master
fix enum brief description in RTF output
Diffstat (limited to 'src')
-rw-r--r--src/doxygen.cpp2
-rw-r--r--src/index.cpp2
-rw-r--r--src/memberlist.cpp2
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;