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); } }