]> SALOME platform Git repositories - modules/visu.git/commitdiff
Salome HOME
BUG 19145 - Exception after "Selection Info" call
authornkv <nkv@opencascade.com>
Mon, 17 Mar 2008 12:39:04 +0000 (12:39 +0000)
committernkv <nkv@opencascade.com>
Mon, 17 Mar 2008 12:39:04 +0000 (12:39 +0000)
src/VISUGUI/VisuGUI_Selection.cxx

index 4b3dbd17c063712ea5dbf9509980df57c385565c..a758cc27fec659ce39dd0e3efb93e505044dc9db 100644 (file)
@@ -117,15 +117,15 @@ VisuGUI_SelectionDlg::VisuGUI_SelectionDlg (const SalomeApp_Module* theModule):
 
   QRadioButton* aBtn = new QRadioButton (tr("MODE_POINT"), aTypeBox);
   aHBox->addWidget( aBtn );
-  aBtnGroup->addButton( aBtn );
+  aBtnGroup->addButton( aBtn, 0 );
 
   aBtn = new QRadioButton (tr("MODE_CELL"), aTypeBox);
   aHBox->addWidget( aBtn );
-  aBtnGroup->addButton( aBtn );
+  aBtnGroup->addButton( aBtn, 1 );
 
   aBtn = new QRadioButton (tr("MODE_ACTOR"), aTypeBox);
   aHBox->addWidget( aBtn );
-  aBtnGroup->addButton( aBtn );
+  aBtnGroup->addButton( aBtn, 2 );
   
   aBtnGroup->button(0)->setChecked(true);