summaryrefslogtreecommitdiffstats
path: root/src/htmlgen.cpp
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2013-07-02 14:53:22 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2013-07-02 14:53:22 (GMT)
commit4c50bd75c871e9997c58fac732c719d2d67eedd1 (patch)
tree48040227c27de706070e34407edd27ca5a117f44 /src/htmlgen.cpp
parent76e1abfa7eff60f5a9fe71e86c6a783cf7366de0 (diff)
downloadDoxygen-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/htmlgen.cpp')
-rw-r--r--src/htmlgen.cpp2
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>";
}