]> SALOME platform Git repositories - modules/smesh.git/commitdiff
Salome HOME
0019941: EDF 766 SMESH : Max length hypothesis
authoreap <eap@opencascade.com>
Tue, 13 Jan 2009 13:05:16 +0000 (13:05 +0000)
committereap <eap@opencascade.com>
Tue, 13 Jan 2009 13:05:16 +0000 (13:05 +0000)
+  virtual void                 valueChanged( QWidget* );

src/SMESHGUI/SMESHGUI_Hypotheses.cxx
src/SMESHGUI/SMESHGUI_Hypotheses.h

index 230491f7b5f40a605501c6a8803fc35939f57be8..455f83713672a749a0264ad5ed6ee4b77d7bc1ca 100644 (file)
@@ -247,6 +247,11 @@ QFrame* SMESHGUI_GenericHypothesisCreator::buildStdFrame()
 }
 
 void SMESHGUI_GenericHypothesisCreator::onValueChanged()
+{
+  valueChanged( (QWidget*) sender() );
+}
+
+void SMESHGUI_GenericHypothesisCreator::valueChanged( QWidget* )
 {
 }
 
index c46be7f34b8d904b967006c40b63e84976df04d5..4a0fba0e3dc07dbcf5952830c83d3202370781fb 100644 (file)
@@ -91,6 +91,7 @@ protected:
   virtual QWidget*             getCustomWidget( const StdParam&, 
                                                QWidget*, const int ) const;
   virtual bool                 getParamFromCustomWidget( StdParam&, QWidget* ) const;
+  virtual void                 valueChanged( QWidget* );
   virtual QString              caption() const;
   virtual QPixmap              icon() const;
   virtual QString              type() const;