From: nge Date: Wed, 2 Sep 2009 08:56:45 +0000 (+0000) Subject: Small GUI modification X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=f81110ffbd8f62aa9440681c4165dfa8b9a85367;p=plugins%2Fblsurfplugin.git Small GUI modification QtxDoubleSpinBox => SalomeApp_DoubleSpinBox --- diff --git a/src/GUI/BLSURFPluginGUI_HypothesisCreator.cxx b/src/GUI/BLSURFPluginGUI_HypothesisCreator.cxx index 36079d6..1daca3f 100644 --- a/src/GUI/BLSURFPluginGUI_HypothesisCreator.cxx +++ b/src/GUI/BLSURFPluginGUI_HypothesisCreator.cxx @@ -33,7 +33,7 @@ #include #include #include -#include +#include #include #include @@ -409,7 +409,7 @@ QFrame* BLSURFPluginGUI_HypothesisCreator::buildFrame() } aStdLayout->addWidget( new QLabel( tr( "BLSURF_GRADATION" ), myStdGroup ), row, 0, 1, 1 ); - myGradation = new QtxDoubleSpinBox( myStdGroup ); + myGradation = new SalomeApp_DoubleSpinBox( myStdGroup ); aStdLayout->addWidget( myGradation, row++, 1, 1, 1 ); myGradation->setMinimum( 1.1 ); myGradation->setMaximum( 2.5 ); @@ -444,14 +444,14 @@ QFrame* BLSURFPluginGUI_HypothesisCreator::buildFrame() myGeometricMesh->addItems( types ); aStdLayout->addWidget( new QLabel( tr( "BLSURF_ANGLE_MESH_S" ), myStdGroup ), row, 0, 1, 1 ); - myAngleMeshS = new QtxDoubleSpinBox( myStdGroup ); + myAngleMeshS = new SalomeApp_DoubleSpinBox( myStdGroup ); aStdLayout->addWidget( myAngleMeshS, row++, 1, 1, 1 ); myAngleMeshS->setMinimum( 0 ); myAngleMeshS->setMaximum( 16 ); myAngleMeshS->setSingleStep( 0.5 ); aStdLayout->addWidget( new QLabel( tr( "BLSURF_ANGLE_MESH_C" ), myStdGroup ), row, 0, 1, 1 ); - myAngleMeshC = new QtxDoubleSpinBox( myStdGroup ); + myAngleMeshC = new SalomeApp_DoubleSpinBox( myStdGroup ); aStdLayout->addWidget( myAngleMeshC, row++, 1, 1, 1 ); myAngleMeshC->setMinimum( 0 ); myAngleMeshC->setMaximum( 16 );