From: vsr Date: Tue, 12 Nov 2013 11:44:16 +0000 (+0000) Subject: Fix exception when zero bounding box is obtained X-Git-Tag: BR_hydro_v_0_3_1~32 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=1ccc5a5f3f060216f26ec5dbeec69a5cc4ec4f21;p=modules%2Fgeom.git Fix exception when zero bounding box is obtained --- diff --git a/src/MeasureGUI/MeasureGUI_BndBoxDlg.cxx b/src/MeasureGUI/MeasureGUI_BndBoxDlg.cxx index 5d0ebc3a8..b4f28714e 100644 --- a/src/MeasureGUI/MeasureGUI_BndBoxDlg.cxx +++ b/src/MeasureGUI/MeasureGUI_BndBoxDlg.cxx @@ -334,4 +334,6 @@ void MeasureGUI_BndBoxDlg::redisplayPreview() catch (const SALOME::SALOME_Exception& e) { SalomeApp_Tools::QtCatchCorbaException(e); } + catch (...) { + } }