From: mkr Date: Thu, 20 Mar 2008 08:56:48 +0000 (+0000) Subject: Qt4 porting: fix SIGSEGV on Renumbering dialog activation. X-Git-Tag: VSR_280308~17 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=b2e2ef901d58610a7af619e31fb5a6b0a85be6d2;p=modules%2Fsmesh.git Qt4 porting: fix SIGSEGV on Renumbering dialog activation. --- diff --git a/src/SMESHGUI/SMESHGUI_RenumberingDlg.cxx b/src/SMESHGUI/SMESHGUI_RenumberingDlg.cxx index 2867d12db..c75eaee3d 100644 --- a/src/SMESHGUI/SMESHGUI_RenumberingDlg.cxx +++ b/src/SMESHGUI/SMESHGUI_RenumberingDlg.cxx @@ -92,10 +92,10 @@ SMESHGUI_RenumberingDlg::SMESHGUI_RenumberingDlg( SMESHGUI* theModule, const int SMESHGUI_RenumberingDlgLayout->setMargin(MARGIN); /***************************************************************/ - QGroupBox* GroupConstructors = new QGroupBox(unit == 0 ? - tr("SMESH_NODES") : - tr("SMESH_ELEMENTS"), - this); + GroupConstructors = new QGroupBox(unit == 0 ? + tr("SMESH_NODES") : + tr("SMESH_ELEMENTS"), + this); myHelpFileName = unit == 0 ? "renumbering_nodes_and_elements_page.html#renumbering_nodes_anchor" : "renumbering_nodes_and_elements_page.html#renumbering_elements_anchor";