summaryrefslogtreecommitdiffstats
path: root/src/latexdocvisitor.cpp
diff options
context:
space:
mode:
authoralbert-github <albert.tests@gmail.com>2016-01-15 19:01:19 (GMT)
committeralbert-github <albert.tests@gmail.com>2016-01-15 19:01:19 (GMT)
commit1d77a4ed407aaa24eae53f501d1a5ce38b352504 (patch)
tree813d0949ff416a1e0f8531a4a4d2887daca6be8a /src/latexdocvisitor.cpp
parent7b0b7ef746ae15df3894847f5b43a29ae20c9599 (diff)
downloadDoxygen-1d77a4ed407aaa24eae53f501d1a5ce38b352504.zip
Doxygen-1d77a4ed407aaa24eae53f501d1a5ce38b352504.tar.gz
Doxygen-1d77a4ed407aaa24eae53f501d1a5ce38b352504.tar.bz2
PDF generation stops when image with caption is included in a table.
- patch should only be applied to images. - added doxyfigcaption to manual.sty for completeness, when in future a table with an image and caption might appear in the documentation.
Diffstat (limited to 'src/latexdocvisitor.cpp')
-rw-r--r--src/latexdocvisitor.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/latexdocvisitor.cpp b/src/latexdocvisitor.cpp
index b8c2efe..e8bb119 100644
--- a/src/latexdocvisitor.cpp
+++ b/src/latexdocvisitor.cpp
@@ -947,7 +947,7 @@ void LatexDocVisitor::visitPre(DocHtmlTable *t)
if (t->hasCaption())
{
DocHtmlCaption *c = t->caption();
- m_t << "\\doxyfigcaption{";
+ m_t << "\\caption{";
visitCaption(this, c->children());
m_t << "}";
m_t << "\\label{" << stripPath(c->file()) << "_" << c->anchor() << "}";