summaryrefslogtreecommitdiffstats
path: root/src/doxygen.cpp
diff options
context:
space:
mode:
authorMattias Ellert <mattias.ellert@fysast.uu.se>2014-08-31 17:19:01 (GMT)
committerMattias Ellert <mattias.ellert@fysast.uu.se>2014-08-31 17:19:01 (GMT)
commit4bbcf71defb2e2be02494b7ff68d475d1a0438ac (patch)
treece8fd4f24d7aa998083c1fda8eb66001ae71db71 /src/doxygen.cpp
parent7a0f5e6d565db6192f8c22045d7988a0b4e4d8c3 (diff)
downloadDoxygen-4bbcf71defb2e2be02494b7ff68d475d1a0438ac.zip
Doxygen-4bbcf71defb2e2be02494b7ff68d475d1a0438ac.tar.gz
Doxygen-4bbcf71defb2e2be02494b7ff68d475d1a0438ac.tar.bz2
Bug 652276 - Typedefs in manpages has too few linebreak possiblilities
Diffstat (limited to 'src/doxygen.cpp')
-rw-r--r--src/doxygen.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/doxygen.cpp b/src/doxygen.cpp
index 533e6ef..d263ac5 100644
--- a/src/doxygen.cpp
+++ b/src/doxygen.cpp
@@ -2833,14 +2833,14 @@ static void addVariable(EntryNav *rootNav,int isFuncPtr=-1)
else if (root->type.find(')',i)!=-1) // function ptr, not variable like "int (*bla)[10]"
{
root->type=root->type.left(root->type.length()-1);
- root->args.prepend(")");
+ root->args.prepend(") ");
//printf("root->type=%s root->args=%s\n",root->type.data(),root->args.data());
}
}
else if (root->type.find("typedef ")!=-1 && root->type.right(2)=="()") // typedef void (func)(int)
{
root->type=root->type.left(root->type.length()-1);
- root->args.prepend(")");
+ root->args.prepend(") ");
}
}