summaryrefslogtreecommitdiffstats
path: root/src/doc.l
diff options
context:
space:
mode:
authordimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2002-07-07 17:23:26 (GMT)
committerdimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2002-07-07 17:23:26 (GMT)
commitbcbf69496a8e7e703ecf4fb6e5de264f86ebea84 (patch)
treef08f27e02ce20e8ca59117d6d02be98fbe3c8c24 /src/doc.l
parent46570cfd109829f87a17c46e32006f901b9026f4 (diff)
downloadDoxygen-bcbf69496a8e7e703ecf4fb6e5de264f86ebea84.zip
Doxygen-bcbf69496a8e7e703ecf4fb6e5de264f86ebea84.tar.gz
Doxygen-bcbf69496a8e7e703ecf4fb6e5de264f86ebea84.tar.bz2
Release-1.2.16-20020707
Diffstat (limited to 'src/doc.l')
-rw-r--r--src/doc.l2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/doc.l b/src/doc.l
index d8b00e2..ca6648c 100644
--- a/src/doc.l
+++ b/src/doc.l
@@ -940,6 +940,7 @@ static void checkArgName(const QCString &name,bool isParam)
for (ali.toFirst();(a=ali.current());++ali)
{
QCString argName = memberDef->isDefine() ? a->type : a->name;
+ if (argName.right(3)=="...") argName=argName.left(argName.length()-3);
if (aName==argName)
{
//printf("adding `%s'\n",aName.data());
@@ -2938,6 +2939,7 @@ void parseDoc(OutputDocInterface &od,const char *fileName,int startLine,
for (ali.toFirst();(a=ali.current());++ali)
{
QCString argName = memberDef->isDefine() ? a->type : a->name;
+ if (argName.right(3)=="...") argName=argName.left(argName.length()-3);
if (!argName.isEmpty() && paramsFound.find(argName)==0)
{
found = TRUE;