summaryrefslogtreecommitdiffstats
path: root/src/latexdocvisitor.cpp
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2014-12-23 18:36:47 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2014-12-23 18:36:47 (GMT)
commit089771b5f3c3c3984ae6f352125a001788a62d29 (patch)
treeabf1dbe45c940ee9d2481a959e9c7fa0661d6ff5 /src/latexdocvisitor.cpp
parent95aee340bddca0c09c79dc2f137a5ad01eb4fda8 (diff)
downloadDoxygen-089771b5f3c3c3984ae6f352125a001788a62d29.zip
Doxygen-089771b5f3c3c3984ae6f352125a001788a62d29.tar.gz
Doxygen-089771b5f3c3c3984ae6f352125a001788a62d29.tar.bz2
Bug 741100 - Latex to PDF hangs when using Markdown tables
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 71e20c1..4cba261 100644
--- a/src/latexdocvisitor.cpp
+++ b/src/latexdocvisitor.cpp
@@ -895,7 +895,7 @@ static const char *getTableName(const DocNode *n)
bool isNested=FALSE;
while (n && !isNested)
{
- isNested = n->kind()==DocNode::Kind_HtmlTable;
+ isNested = n->kind()==DocNode::Kind_HtmlTable || n->kind()==DocNode::Kind_ParamSect;
n = n->parent();
}
return isNested ? "TabularNC" : "TabularC";