From 38fd051164e9ecb786902e2c1f7fd9adba735b6c Mon Sep 17 00:00:00 2001 From: aba Date: Mon, 16 Dec 2013 18:10:58 +0400 Subject: [PATCH] 0024471: Erasing of the shape in HLR sample leads to sample crash. --- samples/mfc/standard/08_HLR/src/SelectionDialog.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/samples/mfc/standard/08_HLR/src/SelectionDialog.cpp b/samples/mfc/standard/08_HLR/src/SelectionDialog.cpp index c5888b6d66..27ece995ae 100644 --- a/samples/mfc/standard/08_HLR/src/SelectionDialog.cpp +++ b/samples/mfc/standard/08_HLR/src/SelectionDialog.cpp @@ -216,7 +216,8 @@ void CSelectionDialog::OnGetSelectedShapes() OneOrMoreFound = Standard_True; TopoDS_Shape aShape = anAISShape->Shape(); myDisplayableShape->Add (aShape); - myInteractiveContext->Display (anAISShape); + Handle(AIS_Shape) aSelectedShape = new AIS_Shape (aShape); + myInteractiveContext->Display (aSelectedShape); } }