summaryrefslogtreecommitdiffstats
path: root/src/memberdef.cpp
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2020-07-30 11:48:32 (GMT)
committerDimitri van Heesch <doxygen@gmail.com>2020-07-30 11:48:32 (GMT)
commite634088616c07a7e5d7e6dc91c8bb3f973637d58 (patch)
tree9391776db3bc44d5acf35b3339a8ce3037b8acac /src/memberdef.cpp
parentc50b92c39435b558c5cb53be47dba41503f26fad (diff)
downloadDoxygen-e634088616c07a7e5d7e6dc91c8bb3f973637d58.zip
Doxygen-e634088616c07a7e5d7e6dc91c8bb3f973637d58.tar.gz
Doxygen-e634088616c07a7e5d7e6dc91c8bb3f973637d58.tar.bz2
Simplified extractDirection()
Also fixed bug preventing direction to be stripped from the parameter documentation.
Diffstat (limited to 'src/memberdef.cpp')
-rw-r--r--src/memberdef.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/memberdef.cpp b/src/memberdef.cpp
index 7d6acb5..7645a01 100644
--- a/src/memberdef.cpp
+++ b/src/memberdef.cpp
@@ -3761,7 +3761,7 @@ void MemberDefImpl::writeDocumentation(const MemberList *ml,
{
QCString docsWithoutDir = a.docs;
QCString direction = extractDirection(docsWithoutDir);
- paramDocs+="@param"+direction+" "+a.name+" "+a.docs;
+ paramDocs+="@param"+direction+" "+a.name+" "+docsWithoutDir;
}
}
// feed the result to the documentation parser