mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-05 18:16:23 +03:00
0025371: Visualization - raise exception in AIS_ConnectedInteractive::Connect() on invalid argument
Indicate API misuse by program exception.
This commit is contained in:
parent
25ef750e44
commit
40f70ac929
@ -35,6 +35,7 @@
|
|||||||
#include <Precision.hxx>
|
#include <Precision.hxx>
|
||||||
#include <AIS_Drawer.hxx>
|
#include <AIS_Drawer.hxx>
|
||||||
#include <TopAbs_ShapeEnum.hxx>
|
#include <TopAbs_ShapeEnum.hxx>
|
||||||
|
#include <Standard_ProgramError.hxx>
|
||||||
#include <StdPrs_WFDeflectionShape.hxx>
|
#include <StdPrs_WFDeflectionShape.hxx>
|
||||||
#include <StdPrs_HLRPolyShape.hxx>
|
#include <StdPrs_HLRPolyShape.hxx>
|
||||||
#include <Prs3d_Drawer.hxx>
|
#include <Prs3d_Drawer.hxx>
|
||||||
@ -86,6 +87,10 @@ void AIS_ConnectedInteractive::Connect (const Handle(AIS_InteractiveObject)& the
|
|||||||
{
|
{
|
||||||
myReference = theAnotherObj;
|
myReference = theAnotherObj;
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
Standard_ProgramError::Raise ("AIS_ConnectedInteractive::Connect() - object without own presentation can not be connected");
|
||||||
|
}
|
||||||
|
|
||||||
if (!myReference.IsNull())
|
if (!myReference.IsNull())
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user