diff options
author | Josh Soref <jsoref@users.noreply.github.com> | 2019-11-12 06:22:55 (GMT) |
---|---|---|
committer | Josh Soref <jsoref@users.noreply.github.com> | 2019-11-12 06:22:55 (GMT) |
commit | 05aba97840b42f5a65ac4d71f75cb6c28a0d15b0 (patch) | |
tree | a9924c1559ce4d17c4e206a40554ac60db423325 /src/vhdldocgen.cpp | |
parent | 35bcf5095043298ffd6a4122c1e442f9a43e612e (diff) | |
download | Doxygen-05aba97840b42f5a65ac4d71f75cb6c28a0d15b0.zip Doxygen-05aba97840b42f5a65ac4d71f75cb6c28a0d15b0.tar.gz Doxygen-05aba97840b42f5a65ac4d71f75cb6c28a0d15b0.tar.bz2 |
spelling: table
Diffstat (limited to 'src/vhdldocgen.cpp')
-rw-r--r-- | src/vhdldocgen.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/vhdldocgen.cpp b/src/vhdldocgen.cpp index 90d4829..fc8460a 100644 --- a/src/vhdldocgen.cpp +++ b/src/vhdldocgen.cpp @@ -82,7 +82,7 @@ static QList<MemberDef>* getPorts(ClassDef *cd); static void writeVhdlEntityToolTip(FTextStream& t,ClassDef *cd); static void endDot(FTextStream &t); static void writeTable(QList<MemberDef>* port,FTextStream & t); -static void endTabel(FTextStream &t); +static void endTable(FTextStream &t); static void writeClassToDot(FTextStream &t,ClassDef* cd); static void writeVhdlDotLink(FTextStream &t,const QCString &a,const QCString &b,const QCString &style); //static void writeVhdlPortToolTip(FTextStream& t,QList<MemberDef>* port,ClassDef *cd); @@ -228,7 +228,7 @@ void VhdlDocGen::writeOverview() startTable(t,cd->name()); writeClassToDot(t,cd); writeTable(port,t); - endTabel(t); + endTable(t); // writeVhdlPortToolTip(t,port,cd); writeVhdlEntityToolTip(t,cd); @@ -448,7 +448,7 @@ static void writeColumn(FTextStream &t,MemberDef *md,bool start) } } -static void endTabel(FTextStream &t) +static void endTable(FTextStream &t) { t << "</TABLE>>\n"; t << "] \n"; |