1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-08-14 13:30:48 +03:00

0031501: Foundation Classes, Message_Printer - remove theToPutEndl argument -- preparation

Operators << for Handle(Message_Messenger) are removed; their use is replaced by use of Message_Messenger::StreamBuffer
Message_Messenger has been replaced by Standard_OStream within Interface_InterfaceModel,IFSelect,IGES,STEP dump interfaces.
This commit is contained in:
abv
2020-04-30 15:45:31 +03:00
committed by bugmaster
parent 39c8dc708f
commit 0ebe5b0a7f
382 changed files with 3109 additions and 3576 deletions

View File

@@ -310,14 +310,14 @@ bool IVtkOCC_ShapePickerAlgo::processPicked()
if (aSelectable.IsNull())
{
anOutput << "Error: EntityOwner having null SelectableObject picked!";
anOutput->SendAlarm() << "Error: EntityOwner having null SelectableObject picked!";
continue;
}
Handle(IVtkOCC_Shape) aSelShape = aSelectable->GetShape();
if (aSelShape.IsNull())
{
anOutput << "Error: SelectableObject with null OccShape pointer picked!";
anOutput->SendAlarm() << "Error: SelectableObject with null OccShape pointer picked!";
continue;
}
@@ -334,12 +334,12 @@ bool IVtkOCC_ShapePickerAlgo::processPicked()
TopoDS_Shape aSubShape = anEntityOwner->Shape();
if (aTopLevelShape.IsNull())
{
anOutput << "Error: OccShape with null top-level TopoDS_Shape picked!";
anOutput->SendAlarm() << "Error: OccShape with null top-level TopoDS_Shape picked!";
continue;
}
if (aSubShape.IsNull())
{
anOutput << "Error: EntityOwner with null TopoDS_Shape picked!";
anOutput->SendAlarm() << "Error: EntityOwner with null TopoDS_Shape picked!";
continue;
}