X-Git-Url: http://git.dev.opencascade.org/gitweb/?p=occt.git;a=blobdiff_plain;f=src%2FIGESGraph%2FIGESGraph_ToolLineFontDefTemplate.cxx;h=b2d581b0b2fe0444544770aa4a57458f9000c9a6;hb=0ebe5b0a7f0b602336d03567cd0074beba4b04a6;hpb=39c8dc708fd076062eb762c47a4e8d2da4365eea diff --git a/src/IGESGraph/IGESGraph_ToolLineFontDefTemplate.cxx b/src/IGESGraph/IGESGraph_ToolLineFontDefTemplate.cxx index 68d65df8b7..b2d581b0b2 100644 --- a/src/IGESGraph/IGESGraph_ToolLineFontDefTemplate.cxx +++ b/src/IGESGraph/IGESGraph_ToolLineFontDefTemplate.cxx @@ -117,18 +117,17 @@ void IGESGraph_ToolLineFontDefTemplate::OwnCheck void IGESGraph_ToolLineFontDefTemplate::OwnDump (const Handle(IGESGraph_LineFontDefTemplate)& ent, const IGESData_IGESDumper& dumper, - const Handle(Message_Messenger)& S, const Standard_Integer level) const + Standard_OStream& S, const Standard_Integer level) const { Standard_Integer tempSubLevel = (level <= 4) ? 0 : 1; - S << "IGESGraph_LineFontDefTemplate" << Message_EndLine; - - S << "Orientation : " << ent->Orientation() << Message_EndLine; - S << "Subfigure Display Entity For Template Display : "; + S << "IGESGraph_LineFontDefTemplate\n" + << "Orientation : " << ent->Orientation() << "\n" + << "Subfigure Display Entity For Template Display : "; dumper.Dump(ent->TemplateEntity(),S, tempSubLevel); - S << Message_EndLine; - S << "Length Between Successive Template Figure : " << ent->Distance()<Scale() << Message_EndLine; - S << Message_EndLine; + S << "\n" + << "Length Between Successive Template Figure : " << ent->Distance()<< "\n" + << "Scale Factor for Subfigure : " << ent->Scale() << "\n" + << std::endl; }