Commit 2bca55c
committed
Tables without any rows result in error in LaTeX
Based on the analyses in comment doxygen#8049 (comment) where a lone `<table>` tag was identified which resulted in an empty table in the LaTeX output. which resulted in the error:
```
! Missing # inserted in alignment preamble.
<to be read again>
\cr
l.24 \end{longtabu}
?
```
when building the pdf file.
Source code:
```
/**
* Defines the style from attributes and properties of an AbiWord <table>.
*/
void fetchAttributesFromAbiTable(const PP_AttrProp* pAP) {
}
```
Empty tables (i.e. tables without any rows are discarded.1 parent 58cc4f3 commit 2bca55c
1 file changed
+2
-0
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
4975 | 4975 | | |
4976 | 4976 | | |
4977 | 4977 | | |
| 4978 | + | |
4978 | 4979 | | |
4979 | 4980 | | |
4980 | 4981 | | |
| |||
5270 | 5271 | | |
5271 | 5272 | | |
5272 | 5273 | | |
| 5274 | + | |
5273 | 5275 | | |
5274 | 5276 | | |
5275 | 5277 | | |
| |||
0 commit comments