summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2016-05-23 18:48:31 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2016-05-23 18:48:31 (GMT)
commit8906544ec27bf7c21c0c64c17784b5d96b3a65b6 (patch)
treec9ed107c484ae7aeb4c6ca65aa9b864f814c55e8
parentf96cb4bae6b8267c90b8b8c74f25f516b75cc2aa (diff)
parent61919f5483c717370742f2d238dcac88695d1990 (diff)
downloadDoxygen-8906544ec27bf7c21c0c64c17784b5d96b3a65b6.zip
Doxygen-8906544ec27bf7c21c0c64c17784b5d96b3a65b6.tar.gz
Doxygen-8906544ec27bf7c21c0c64c17784b5d96b3a65b6.tar.bz2
Merge pull request #481 from albert-github/feature/bug_766787
Bug 766787 - HTML Tables with 10+ columns are broken for LaTeX based output
-rw-r--r--src/latexdocvisitor.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/latexdocvisitor.cpp b/src/latexdocvisitor.cpp
index 184511f..4a98c77 100644
--- a/src/latexdocvisitor.cpp
+++ b/src/latexdocvisitor.cpp
@@ -908,7 +908,7 @@ static void writeStartTableCommand(FTextStream &t,const DocNode *n,int cols)
}
else
{
- t << "\\tabulinesep=1mm\n\\begin{longtabu} spread 0pt [c]{*" << cols << "{|X[-1]}|}\n";
+ t << "\\tabulinesep=1mm\n\\begin{longtabu} spread 0pt [c]{*{" << cols << "}{|X[-1]}|}\n";
}
//return isNested ? "TabularNC" : "TabularC";
}