diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2013-07-02 14:53:22 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2013-07-02 14:53:22 (GMT) |
commit | 4c50bd75c871e9997c58fac732c719d2d67eedd1 (patch) | |
tree | 48040227c27de706070e34407edd27ca5a117f44 /src | |
parent | 76e1abfa7eff60f5a9fe71e86c6a783cf7366de0 (diff) | |
download | Doxygen-4c50bd75c871e9997c58fac732c719d2d67eedd1.zip Doxygen-4c50bd75c871e9997c58fac732c719d2d67eedd1.tar.gz Doxygen-4c50bd75c871e9997c58fac732c719d2d67eedd1.tar.bz2 |
Bug 702676 - Closing ) of function in function documentation is in wrong color
Diffstat (limited to 'src')
-rw-r--r-- | src/htmlgen.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/htmlgen.cpp b/src/htmlgen.cpp index 1f0e6da..30182a5 100644 --- a/src/htmlgen.cpp +++ b/src/htmlgen.cpp @@ -2496,7 +2496,7 @@ void HtmlGenerator::endParameterName(bool last,bool emptyList,bool closeBracket) { if (emptyList) { - if (closeBracket) t << ")</td><td>"; + if (closeBracket) t << "</td><td>)"; t << "</td>" << endl; t << " <td>"; } |