1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-05 18:16:23 +03:00

0031743: Draw Harness - fix misprint in Draw_Interpretor::SetToColorize()

This commit is contained in:
kgv 2020-08-31 11:03:01 +03:00 committed by bugmaster
parent 7d47ebdbcd
commit dda9303c69

View File

@ -299,7 +299,7 @@ void Draw_Interpretor::SetToColorize (Standard_Boolean theToColorize)
{ {
if (Handle(Message_PrinterOStream) aPrinter = Handle(Message_PrinterOStream)::DownCast (aPrinterIter.Value())) if (Handle(Message_PrinterOStream) aPrinter = Handle(Message_PrinterOStream)::DownCast (aPrinterIter.Value()))
{ {
aPrinter->SetToColorize (Standard_False); aPrinter->SetToColorize (theToColorize);
} }
} }
} }