summaryrefslogtreecommitdiffstats
path: root/src/latexdocvisitor.cpp
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2014-12-22 10:14:03 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2014-12-22 10:14:03 (GMT)
commit223e7de6478019c8eebcfd87085fe22d3bfeec0e (patch)
tree2297b1d3beea204dfe48f39e41a95286f5581e8e /src/latexdocvisitor.cpp
parent67e8d626fec0c4365106902dcd16b988b8cceb10 (diff)
downloadDoxygen-223e7de6478019c8eebcfd87085fe22d3bfeec0e.zip
Doxygen-223e7de6478019c8eebcfd87085fe22d3bfeec0e.tar.gz
Doxygen-223e7de6478019c8eebcfd87085fe22d3bfeec0e.tar.bz2
various fixes and restructuring
Diffstat (limited to 'src/latexdocvisitor.cpp')
-rw-r--r--src/latexdocvisitor.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/latexdocvisitor.cpp b/src/latexdocvisitor.cpp
index c53a45a..71e20c1 100644
--- a/src/latexdocvisitor.cpp
+++ b/src/latexdocvisitor.cpp
@@ -90,7 +90,7 @@ static void visitPreStart(FTextStream &t, const bool hasCaption, QCString name,
}
if (!width.isEmpty())
{
- t << width;
+ t << "width=" << width;
}
if (!width.isEmpty() && !height.isEmpty())
{
@@ -98,7 +98,7 @@ static void visitPreStart(FTextStream &t, const bool hasCaption, QCString name,
}
if (!height.isEmpty())
{
- t << height;
+ t << "height=" << height;
}
if (width.isEmpty() && height.isEmpty())
{
@@ -359,7 +359,7 @@ void LatexDocVisitor::visit(DocVerbatim *s)
file.close();
startDotFile(fileName,s->width(),s->height(),s->hasCaption());
- visitCaption(this, s->m_children);
+ visitCaption(this, s->children());
endDotFile(s->hasCaption());
if (Config_getBool("DOT_CLEANUP")) file.remove();
@@ -1701,7 +1701,7 @@ void LatexDocVisitor::writeMscFile(const QCString &baseName, DocVerbatim *s)
QCString outDir = Config_getString("LATEX_OUTPUT");
writeMscGraphFromFile(baseName+".msc",outDir,shortName,MSC_EPS);
visitPreStart(m_t, s->hasCaption(), shortName, s->width(),s->height());
- visitCaption(this, s->m_children);
+ visitCaption(this, s->children());
visitPostEnd(m_t, s->hasCaption());
}
@@ -1747,7 +1747,7 @@ void LatexDocVisitor::writeDiaFile(const QCString &baseName, DocVerbatim *s)
QCString outDir = Config_getString("LATEX_OUTPUT");
writeDiaGraphFromFile(baseName+".dia",outDir,shortName,DIA_EPS);
visitPreStart(m_t, s->hasCaption(), shortName, s->width(), s->height());
- visitCaption(this, s->m_children);
+ visitCaption(this, s->children());
visitPostEnd(m_t, s->hasCaption());
}
@@ -1762,7 +1762,7 @@ void LatexDocVisitor::writePlantUMLFile(const QCString &baseName, DocVerbatim *s
QCString outDir = Config_getString("LATEX_OUTPUT");
generatePlantUMLOutput(baseName,outDir,PUML_EPS);
visitPreStart(m_t, s->hasCaption(), shortName, s->width(), s->height());
- visitCaption(this, s->m_children);
+ visitCaption(this, s->children());
visitPostEnd(m_t, s->hasCaption());
}