X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FSMESHGUI%2FSMESHGUI_aParameter.cxx;h=cbd22eb3b196e78e890ee90ef29c28a67cdb56cb;hb=455afe36e4542c56ad944b1c01b4c63c4316d1e9;hp=37a2f329b0cd350c2174e500556da9493792f565;hpb=3036ecaa2577a1fb892f75e20ba11e91cbe42b37;p=modules%2Fsmesh.git diff --git a/src/SMESHGUI/SMESHGUI_aParameter.cxx b/src/SMESHGUI/SMESHGUI_aParameter.cxx index 37a2f329b..cbd22eb3b 100644 --- a/src/SMESHGUI/SMESHGUI_aParameter.cxx +++ b/src/SMESHGUI/SMESHGUI_aParameter.cxx @@ -33,8 +33,6 @@ #include "QAD_SpinBoxDbl.h" -#include - SMESHGUI_aParameter::~SMESHGUI_aParameter() {} //================================================================================= @@ -139,7 +137,6 @@ SMESHGUI_strParameter::SMESHGUI_strParameter(const QString& theInitValue, :SMESHGUI_aParameter(theLabel), _initValue( theInitValue ) { - MESSAGE("SMESHGUI_strParameter::SMESHGUI_strParameter") } SMESHGUI_aParameter::Type SMESHGUI_strParameter::GetType() const { @@ -160,7 +157,6 @@ bool SMESHGUI_strParameter::GetNewText( QString & theValue ) const } void SMESHGUI_strParameter::InitializeWidget( QWidget* theQWidget) const { - MESSAGE("SMESHGUI_strParameter::InitializeWidget") QTextEdit * anEdit = dynamic_cast< QTextEdit *>( theQWidget ); if ( anEdit ) { anEdit->setText( _initValue ); @@ -168,7 +164,6 @@ void SMESHGUI_strParameter::InitializeWidget( QWidget* theQWidget) const } void SMESHGUI_strParameter::TakeValue( QWidget* theQWidget) { - MESSAGE("SMESHGUI_strParameter::TakeValue") QTextEdit * anEdit = dynamic_cast< QTextEdit *>( theQWidget ); if ( anEdit ) _newValue = anEdit->text();