]> SALOME platform Git repositories - modules/visu.git/commitdiff
Salome HOME
minor changes
authorouv <ouv@opencascade.com>
Fri, 18 Nov 2005 13:42:50 +0000 (13:42 +0000)
committerouv <ouv@opencascade.com>
Fri, 18 Nov 2005 13:42:50 +0000 (13:42 +0000)
src/VISUGUI/VisuGUI_GaussPointsDlg.cxx
src/VISUGUI/VisuGUI_GaussPointsDlg.h

index bbaff24bb507386438068076c430f422c8f7bbe2..478adbd0a5a30f2de6d205406b3cb35b673438f3 100644 (file)
@@ -244,7 +244,7 @@ VisuGUI_GaussScalarBarPane::VisuGUI_GaussScalarBarPane (QWidget * parent, bool S
 
   // signals and slots connections ===========================================
   connect( myRBLocal,     SIGNAL( toggled( bool ) ), myCBDisplayed, SLOT( setEnabled( bool ) ) );
-  connect( myRBGlobal,    SIGNAL( toggled( bool ) ), myCBDisplayed, SLOT( setChecked( bool ) ) );
+  connect( myRBGlobal,    SIGNAL( clicked() ),       this, SLOT( onSetDisplayGlobal() ) );
   connect( RainbowButton, SIGNAL( toggled( bool ) ), ColorLabel, SLOT( setEnabled( bool ) ) );
   connect( RainbowButton, SIGNAL( toggled( bool ) ), ColorSpin, SLOT( setEnabled( bool ) ) );
   connect( RainbowButton, SIGNAL( toggled( bool ) ), LabelLabel, SLOT( setEnabled( bool ) ) );
@@ -258,6 +258,12 @@ VisuGUI_GaussScalarBarPane::VisuGUI_GaussScalarBarPane (QWidget * parent, bool S
   myIsStoreTextProp = false;
 }
 
+void VisuGUI_GaussScalarBarPane::onSetDisplayGlobal()
+{
+  myCBDisplayed->setChecked( true );
+}
+
+
 /**
  * Initialise dialog box from presentation object
  */
index 82b24e870c232c837718fc9b5ee455301447cb8d..205496cf27de0aa2a25bd66ceaaee11edbae8a21 100644 (file)
@@ -116,6 +116,7 @@ class VisuGUI_GaussScalarBarPane : public QVBox
   void changeRange( int );
   void XYChanged( double );
   void onTextPref();
+  void onSetDisplayGlobal();
 };
 
 //! Create Gauss Points Presentation Dialog.