Navigation Menu

Skip to content

Commit

Permalink
Adjustment of xhtml1-transitional.dtd
Browse files Browse the repository at this point in the history
- mapping changed due to missing `doxygen=`
- externalRef part changeddue to missing`doxygen=`
  • Loading branch information
albert-github committed Feb 16, 2019
1 parent 1545211 commit 4774ac1
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/context.cpp
Expand Up @@ -3854,7 +3854,7 @@ class TextGeneratorHtml : public TextGeneratorIntf
if (ref)
{
m_ts << "<a class=\"elRef\" ";
m_ts << externalLinkTarget() << externalRef(m_relPath,ref,FALSE);
m_ts << externalLinkTarget();
}
else
{
Expand Down
2 changes: 1 addition & 1 deletion src/dot.cpp
Expand Up @@ -721,7 +721,7 @@ static bool insertMapFile(FTextStream &out,const QCString &mapFile,
{
QGString tmpstr;
FTextStream tmpout(&tmpstr);
convertMapFile(tmpout,mapFile,relPath);
convertMapFile(tmpout,mapFile,relPath,TRUE);
if (!tmpstr.isEmpty())
{
out << "<map name=\"" << mapLabel << "\" id=\"" << mapLabel << "\">" << endl;
Expand Down
2 changes: 1 addition & 1 deletion src/ftvhelp.cpp
Expand Up @@ -286,7 +286,7 @@ void FTVHelp::generateLink(FTextStream &t,FTVNode *n)
t << "<a class=\"elRef\" ";
QCString result = externalLinkTarget();
if (result != "") setTarget = TRUE;
t << result << externalRef("",n->ref,FALSE);
t << result;
}
else // local link
{
Expand Down
2 changes: 1 addition & 1 deletion src/htmldocvisitor.cpp
Expand Up @@ -2195,7 +2195,7 @@ void HtmlDocVisitor::startLink(const QCString &ref,const QCString &file,
if (!ref.isEmpty()) // link to entity imported via tag file
{
m_t << "<a class=\"elRef\" ";
m_t << externalLinkTarget() << externalRef(relPath,ref,FALSE);
m_t << externalLinkTarget();
}
else // local link
{
Expand Down
4 changes: 2 additions & 2 deletions src/htmlgen.cpp
Expand Up @@ -1122,7 +1122,7 @@ void HtmlGenerator::startIndexItem(const char *ref,const char *f)
if (ref)
{
t << "<a class=\"elRef\" ";
t << externalLinkTarget() << externalRef(relPath,ref,FALSE);
t << externalLinkTarget();
}
else
{
Expand Down Expand Up @@ -1168,7 +1168,7 @@ void HtmlGenerator::writeObjectLink(const char *ref,const char *f,
if (ref)
{
t << "<a class=\"elRef\" ";
t << externalLinkTarget() << externalRef(relPath,ref,FALSE);
t << externalLinkTarget();
}
else
{
Expand Down

0 comments on commit 4774ac1

Please sign in to comment.