summaryrefslogtreecommitdiffstats
path: root/src/doxygen.cpp
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2014-09-03 20:39:34 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2014-09-03 20:39:34 (GMT)
commit83c1a1278a48cbcd5d31f721d247e611c61c4661 (patch)
tree75f389476de609be658d0f2f26c0bacca15b71c3 /src/doxygen.cpp
parent808b6174027ae53083aab386a7bc0eecc72c7a0d (diff)
parent4bbcf71defb2e2be02494b7ff68d475d1a0438ac (diff)
downloadDoxygen-83c1a1278a48cbcd5d31f721d247e611c61c4661.zip
Doxygen-83c1a1278a48cbcd5d31f721d247e611c61c4661.tar.gz
Doxygen-83c1a1278a48cbcd5d31f721d247e611c61c4661.tar.bz2
Merge pull request #214 from ellert/missing-spaces
Bug 651848 & 652276 - Missing spaces in man page output
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 8b72f86..8ab4591 100644
--- a/src/doxygen.cpp
+++ b/src/doxygen.cpp
@@ -2837,14 +2837,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(") ");
}
}