Skip to content

Commit

Permalink
Adjustment of xhtml1-transitional.dtd
Browse files Browse the repository at this point in the history
Some more ...
  • Loading branch information
albert-github committed Feb 16, 2019
1 parent 4774ac1 commit e4ccf68
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/diagram.cpp
Expand Up @@ -261,7 +261,7 @@ static void writeMapArea(FTextStream &t,ClassDef *cd,QCString relPath,
t << "<area ";
if (!ref.isEmpty())
{
t << externalLinkTarget() << externalRef(relPath,ref,FALSE);
t << externalLinkTarget();
}
t << "href=\"";
t << externalRef(relPath,ref,TRUE);
Expand Down
1 change: 0 additions & 1 deletion src/dot.cpp
Expand Up @@ -336,7 +336,6 @@ static QCString replaceRef(const QCString &buf,const QCString relPath,
{
result = externalLinkTarget();
if (result != "") setTarget = TRUE;
result += externalRef(relPath,ref,FALSE);
}
result+= href+"=\"";
result+=externalRef(relPath,ref,TRUE);
Expand Down
2 changes: 1 addition & 1 deletion src/htmlgen.cpp
Expand Up @@ -556,7 +556,7 @@ void HtmlCodeGenerator::_writeCodeLink(const char *className,
if (ref)
{
m_t << "<a class=\"" << className << "Ref\" ";
m_t << externalLinkTarget() << externalRef(m_relPath,ref,FALSE);
m_t << externalLinkTarget();
}
else
{
Expand Down

0 comments on commit e4ccf68

Please sign in to comment.