From: ouv Date: Mon, 18 Apr 2011 09:59:35 +0000 (+0000) Subject: Minor changes (untabify). X-Git-Tag: V6_4_0a1~222 X-Git-Url: http://git.salome-platform.org/gitweb/?p=modules%2Fsmesh.git;a=commitdiff_plain;h=eaefb3fa067c72555d0dd2333af89256ee01af06 Minor changes (untabify). --- diff --git a/src/SMESHGUI/SMESHGUI_FilterDlg.cxx b/src/SMESHGUI/SMESHGUI_FilterDlg.cxx index 5c5c4b207..6e3b261af 100755 --- a/src/SMESHGUI/SMESHGUI_FilterDlg.cxx +++ b/src/SMESHGUI/SMESHGUI_FilterDlg.cxx @@ -645,7 +645,7 @@ QWidget* SMESHGUI_FilterTable::ComboDelegate::createEditor( QWidget* parent, if ( ok ) { int aPrecision = index.data( Qt::UserRole + 1 ).toInt( &ok ); if ( !ok ) - aPrecision = 0; + aPrecision = 0; SalomeApp_DoubleSpinBox* dblSpin = new SalomeApp_DoubleSpinBox( -1.e20, 1.e20, 1, aPrecision, 20, parent, false, true ); dblSpin->setFrame( false ); @@ -673,7 +673,7 @@ void SMESHGUI_FilterTable::ComboDelegate::setEditorData( QWidget* editor, if( data.type() == QVariant::Double ) { double valueDouble = data.toDouble( &bOk ); if( bOk ) - dblSpin->setValue( valueDouble ); + dblSpin->setValue( valueDouble ); } } if ( !bOk ) QItemDelegate::setEditorData( editor, index );