summaryrefslogtreecommitdiffstats
path: root/src/util.cpp
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2014-09-14 14:56:15 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2014-09-14 14:56:15 (GMT)
commitdec53d22986c8d2c44a30806a2c8ed03bbe24768 (patch)
tree96b75a4309bae6a1a0c5d37e3272e5b74918ac84 /src/util.cpp
parent08c9689157d7edc5d8e3369ef96f2ccd4b01c10c (diff)
downloadDoxygen-dec53d22986c8d2c44a30806a2c8ed03bbe24768.zip
Doxygen-dec53d22986c8d2c44a30806a2c8ed03bbe24768.tar.gz
Doxygen-dec53d22986c8d2c44a30806a2c8ed03bbe24768.tar.bz2
Regression class<T extends V> resulted in class<V> as the page title
Diffstat (limited to 'src/util.cpp')
-rw-r--r--src/util.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/util.cpp b/src/util.cpp
index a524922..1de3349 100644
--- a/src/util.cpp
+++ b/src/util.cpp
@@ -2190,7 +2190,7 @@ QCString argListToString(ArgumentList *al,bool useCanonicalType,bool showDefVals
return removeRedundantWhiteSpace(result);
}
-QCString tempArgListToString(ArgumentList *al)
+QCString tempArgListToString(ArgumentList *al,SrcLangExt lang)
{
QCString result;
if (al==0) return result;
@@ -2209,6 +2209,10 @@ QCString tempArgListToString(ArgumentList *al)
{
result+="in ";
}
+ if (lang==SrcLangExt_Java || lang==SrcLangExt_CSharp)
+ {
+ result+=a->type+" ";
+ }
result+=a->name;
}
else // extract name from type