summaryrefslogtreecommitdiffstats
path: root/src/vhdlcode.l
diff options
context:
space:
mode:
authordimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2009-01-29 20:13:23 (GMT)
committerdimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2009-01-29 20:13:23 (GMT)
commit27b5dd5b526154944bb1997fb7a592343d124595 (patch)
tree0653bda058f25d9420dd6ddcaf4edc28781a8aa4 /src/vhdlcode.l
parentf1662f81dd249c51e4d8f9a64ea226f511b0bfbc (diff)
downloadDoxygen-27b5dd5b526154944bb1997fb7a592343d124595.zip
Doxygen-27b5dd5b526154944bb1997fb7a592343d124595.tar.gz
Doxygen-27b5dd5b526154944bb1997fb7a592343d124595.tar.bz2
Release-1.5.8-20090129
Diffstat (limited to 'src/vhdlcode.l')
-rw-r--r--src/vhdlcode.l9
1 files changed, 7 insertions, 2 deletions
diff --git a/src/vhdlcode.l b/src/vhdlcode.l
index b696b2a..28e2d85 100644
--- a/src/vhdlcode.l
+++ b/src/vhdlcode.l
@@ -660,9 +660,14 @@ static void writeFuncProto()
{
QList<Argument> ql;
QCString name,ret;
- VhdlDocGen::parseFuncProto(g_FuncProto.data(),ql,name,ret,FALSE);
+ VhdlDocGen::parseFuncProto(g_FuncProto,ql,name,ret,FALSE);
- QStringList qlist=QStringList::split(name.data(),g_FuncProto,FALSE);
+ if (name.isEmpty())
+ {
+ codifyLines(g_FuncProto.data(),g_CurrClass.data());
+ return;
+ }
+ QStringList qlist=QStringList::split(name,g_FuncProto,FALSE);
QCString temp=(QCString)qlist[0];
codifyLines(temp.data(),g_CurrClass.data());
g_FuncProto.stripPrefix(temp.data());