GNOME Bugzilla – Bug 625296
Too much <td></td> within html dev.memitem div.memproto table.memname.
Last modified: 2010-10-09 08:19:17 UTC
Created attachment 166568 [details] Sample output before and after fix. Within html export the detailed function description contains trailing td's at the last two lines. This fix which applies to doxygen-1.7.1 corrects the problem. Without this fix: <table> <tr><td>int foo</td><td>(</td><td>int</td><td>param1,</td></tr> <tr><td></td> <td></td> <td>int</td><td>param2,</td><td></td></tr> <tr><td></td> <td>)</td><td>int</td><td></td> <td></td></tr> With fix: <table> <tr><td>int foo</td><td>(</td><td>int</td><td>param1,</td></tr> <tr><td></td> <td></td> <td>int</td><td>param2,</td></tr> <tr><td></td> <td>)</td><td>int</td><td></td> </tr>
Created attachment 166569 [details] Sample project to create the screenshot
Created attachment 166570 [details] [review] Patch: Fix too much <td></td> within html dev.memitem div.memproto table.memname.
Thanks for the patch. Should be included in the next subversion update.
This bug was previously marked ASSIGNED, which means it should be fixed in doxygen version 1.7.2. Please verify if this is indeed the case. Reopen the bug if you think it is not fixed and please include any additional information that you think can be relevant.