summaryrefslogtreecommitdiffstats
path: root/src/util.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/util.cpp')
-rw-r--r--src/util.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/util.cpp b/src/util.cpp
index a1281f9..113105e 100644
--- a/src/util.cpp
+++ b/src/util.cpp
@@ -1909,6 +1909,10 @@ QCString tempArgListToString(ArgumentList *al)
{
result+=a->type.right(a->type.length()-i-1);
}
+ else // nothing found -> take whole name
+ {
+ result+=a->type;
+ }
}
a=al->next();
if (a) result+=", ";