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

0025371: Visualization - raise exception in AIS_ConnectedInteractive::Connect() on invalid argument

Indicate API misuse by program exception.
This commit is contained in:
kgv 2014-10-14 19:17:11 +04:00 committed by bugmaster
parent 25ef750e44
commit 40f70ac929

View File

@ -35,6 +35,7 @@
#include <Precision.hxx>
#include <AIS_Drawer.hxx>
#include <TopAbs_ShapeEnum.hxx>
#include <Standard_ProgramError.hxx>
#include <StdPrs_WFDeflectionShape.hxx>
#include <StdPrs_HLRPolyShape.hxx>
#include <Prs3d_Drawer.hxx>
@ -86,6 +87,10 @@ void AIS_ConnectedInteractive::Connect (const Handle(AIS_InteractiveObject)& the
{
myReference = theAnotherObj;
}
else
{
Standard_ProgramError::Raise ("AIS_ConnectedInteractive::Connect() - object without own presentation can not be connected");
}
if (!myReference.IsNull())
{