Salome HOME
[MEDCalc] Proper autoscale for vector field.
[modules/med.git] / src / MEDCalc / gui / MEDWidgetHelperComponent.cxx
index 01a29e9edf4cd52ed68cf73f5ef59b1664674a86..34136e965b0274904b80e4a8b545150597b4ccba 100644 (file)
@@ -37,8 +37,6 @@ void MEDWidgetHelperComponent::updateWidget(bool connect)
   if (connect)
     {
       // Connect combo box changes
-      QObject::connect( this, SIGNAL(presentationUpdateSignal(const PresentationEvent *)),
-                        _presController, SIGNAL(presentationSignal(const PresentationEvent *)) );
       QObject::connect( _paramWidget, SIGNAL(comboCompoIndexChanged(int)), this, SLOT(onComponentChanged(int)) );
     }
 }
@@ -47,7 +45,5 @@ void MEDWidgetHelperComponent::releaseWidget()
 {
   MEDWidgetHelper::releaseWidget();
 
-  QObject::disconnect( this, SIGNAL(presentationUpdateSignal(const PresentationEvent *)),
-                       _presController, SIGNAL(presentationSignal(const PresentationEvent *)) );
   QObject::disconnect( _paramWidget, SIGNAL(comboCompoIndexChanged(int)), this, SLOT(onComponentChanged(int)) );
 }