summaryrefslogtreecommitdiffstats
path: root/src/vhdldocgen.cpp
diff options
context:
space:
mode:
authorMoritz 'Morty' Strübe <moritz.struebe@redheads.de>2020-03-21 15:33:06 (GMT)
committerMoritz 'Morty' Strübe <moritz.struebe@redheads.de>2020-03-21 20:27:43 (GMT)
commitdcd90f9779e3d2608e4c1e9225d1c0e5c12249f9 (patch)
tree067728e03795aeb6eb95905dd5f706a3ff7c6027 /src/vhdldocgen.cpp
parent8aead913d6a8285c2949f93147efaec5f7b357d8 (diff)
downloadDoxygen-dcd90f9779e3d2608e4c1e9225d1c0e5c12249f9.zip
Doxygen-dcd90f9779e3d2608e4c1e9225d1c0e5c12249f9.tar.gz
Doxygen-dcd90f9779e3d2608e4c1e9225d1c0e5c12249f9.tar.bz2
Fix not correctly formatted messages
Diffstat (limited to 'src/vhdldocgen.cpp')
-rw-r--r--src/vhdldocgen.cpp16
1 files changed, 7 insertions, 9 deletions
diff --git a/src/vhdldocgen.cpp b/src/vhdldocgen.cpp
index 8e11601..3528627 100644
--- a/src/vhdldocgen.cpp
+++ b/src/vhdldocgen.cpp
@@ -1957,7 +1957,7 @@ void VhdlDocGen::writeVHDLDeclaration(const MemberDef* mdef,OutputList &ol,
QCString ltype(mdef->typeString());
QCString largs(mdef->argsString());
-
+
ClassDef *kl=0;
const ArgumentList &al = mdef->argumentList();
QCString nn;
@@ -2136,7 +2136,7 @@ void VhdlDocGen::writeVHDLDeclaration(const MemberDef* mdef,OutputList &ol,
case VhdlDocGen::UNITS:
writeRecordUnit(largs,ltype,ol,mdef);
break;
-
+
default: break;
}
@@ -2814,20 +2814,20 @@ ferr:
void VhdlDocGen::writeRecordUnit(QCString & largs,QCString & ltype,OutputList& ol ,const MemberDef *mdef)
{
- int i=mdef->name().find('~');
+ int i=mdef->name().find('~');
if(i>0){
//sets the real record member name
const_cast<MemberDef*>(mdef)->setName(mdef->name().left(i).data());
}
-
+
writeLink(mdef,ol);
ol.startBold();
ol.insertMemberAlign();
if (!ltype.isEmpty()){
VhdlDocGen::formatString(ltype,ol,mdef);
- }
+ }
ol.endBold();
-
+
}
@@ -3933,7 +3933,7 @@ int FlowChart::findLabel(int index,QCString &label)
return j;
}
}
- err("could not find label: ",label.data());
+ err("could not find label: %s",label.data());
return 0;
}
@@ -4148,5 +4148,3 @@ void FlowChart::writeFlowLinks(FTextStream &t)
}
} //for
} //writeFlowLinks
-
-