summaryrefslogtreecommitdiffstats
path: root/src/dotclassgraph.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/dotclassgraph.cpp')
-rw-r--r--src/dotclassgraph.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/dotclassgraph.cpp b/src/dotclassgraph.cpp
index 9146a25..c4f5b48 100644
--- a/src/dotclassgraph.cpp
+++ b/src/dotclassgraph.cpp
@@ -441,7 +441,7 @@ QCString DotClassGraph::getImgAltText() const
return "";
}
-QCString DotClassGraph::writeGraph(FTextStream &out,
+QCString DotClassGraph::writeGraph(std::ostream &out,
GraphOutputFormat graphFormat,
EmbeddedOutputFormat textFormat,
const char *path,
@@ -456,7 +456,7 @@ QCString DotClassGraph::writeGraph(FTextStream &out,
//--------------------------------------------------------------------
-void DotClassGraph::writeXML(FTextStream &t)
+void DotClassGraph::writeXML(std::ostream &t)
{
for (const auto &kv : m_usedNodes)
{
@@ -464,7 +464,7 @@ void DotClassGraph::writeXML(FTextStream &t)
}
}
-void DotClassGraph::writeDocbook(FTextStream &t)
+void DotClassGraph::writeDocbook(std::ostream &t)
{
for (const auto &kv : m_usedNodes)
{
@@ -472,7 +472,7 @@ void DotClassGraph::writeDocbook(FTextStream &t)
}
}
-void DotClassGraph::writeDEF(FTextStream &t)
+void DotClassGraph::writeDEF(std::ostream &t)
{
for (const auto &kv : m_usedNodes)
{