summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2014-01-02 16:07:43 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2014-01-02 16:07:43 (GMT)
commitab453a2c5b78a35ec290fee2773faef930be7a87 (patch)
treeafbfaccdb0e78b9d57f20cc4f53517b969fd1b8e /src
parentce35c4f21192d2ab3baa931a0d9fd04e3aa17edd (diff)
parenta99c33838057acba20768ca32681e1f379f36ca0 (diff)
downloadDoxygen-ab453a2c5b78a35ec290fee2773faef930be7a87.zip
Doxygen-ab453a2c5b78a35ec290fee2773faef930be7a87.tar.gz
Doxygen-ab453a2c5b78a35ec290fee2773faef930be7a87.tar.bz2
Merge pull request #78 from albert-github/feature/bug_721302
Bug 721302 - [Latex/PDF] Merging brief and detailed description in file section
Diffstat (limited to 'src')
-rw-r--r--src/dirdef.cpp1
-rw-r--r--src/filedef.cpp1
-rw-r--r--src/groupdef.cpp1
-rw-r--r--src/namespacedef.cpp1
4 files changed, 4 insertions, 0 deletions
diff --git a/src/dirdef.cpp b/src/dirdef.cpp
index b7a2a92..ab4e5c2 100644
--- a/src/dirdef.cpp
+++ b/src/dirdef.cpp
@@ -150,6 +150,7 @@ void DirDef::writeDetailedDescription(OutputList &ol,const QCString &title)
// ol.newParagraph(); // FIXME:PARA
ol.enableAll();
ol.disableAllBut(OutputGenerator::Man);
+ ol.enable(OutputGenerator::Latex);
ol.writeString("\n\n");
ol.popGeneratorState();
}
diff --git a/src/filedef.cpp b/src/filedef.cpp
index 8a16859..d7bc794 100644
--- a/src/filedef.cpp
+++ b/src/filedef.cpp
@@ -209,6 +209,7 @@ void FileDef::writeDetailedDescription(OutputList &ol,const QCString &title)
// ol.newParagraph(); // FIXME:PARA
ol.enableAll();
ol.disableAllBut(OutputGenerator::Man);
+ ol.enable(OutputGenerator::Latex);
ol.writeString("\n\n");
ol.popGeneratorState();
}
diff --git a/src/groupdef.cpp b/src/groupdef.cpp
index 0624892..77b3610 100644
--- a/src/groupdef.cpp
+++ b/src/groupdef.cpp
@@ -581,6 +581,7 @@ void GroupDef::writeDetailedDescription(OutputList &ol,const QCString &title)
// ol.newParagraph(); // FIXME:PARA
ol.enableAll();
ol.disableAllBut(OutputGenerator::Man);
+ ol.enable(OutputGenerator::Latex);
ol.writeString("\n\n");
ol.popGeneratorState();
}
diff --git a/src/namespacedef.cpp b/src/namespacedef.cpp
index c0d4389..146e8da 100644
--- a/src/namespacedef.cpp
+++ b/src/namespacedef.cpp
@@ -280,6 +280,7 @@ void NamespaceDef::writeDetailedDescription(OutputList &ol,const QCString &title
//ol.newParagraph(); // FIXME:PARA
ol.enableAll();
ol.disableAllBut(OutputGenerator::Man);
+ ol.enable(OutputGenerator::Latex);
ol.writeString("\n\n");
ol.popGeneratorState();
}