]> SALOME platform Git repositories - modules/gui.git/commitdiff
Salome HOME
Refix of IPAL19631: Qt4 porting. There are nonsignificant zeros in many fields of...
authormkr <mkr@opencascade.com>
Tue, 2 Sep 2008 07:16:41 +0000 (07:16 +0000)
committermkr <mkr@opencascade.com>
Tue, 2 Sep 2008 07:16:41 +0000 (07:16 +0000)
src/Qtx/QtxDoubleSpinBox.cxx

index 652f1a5cc463a8fa506b18aaab335d28ba4280d8..ba8585f4a00c60ecad4b2fea2659e9f61cece6cc 100644 (file)
@@ -199,8 +199,7 @@ double QtxDoubleSpinBox::valueFromText( const QString& text ) const
 */
 QString QtxDoubleSpinBox::textFromValue( double val ) const
 {
-  QString s;
-  s.setNum( val, myPrecision >= 0 ? 'f' : 'g', myPrecision == 0 ? 6 : qAbs( myPrecision ) );
+  QString s = QLocale().toString( val, myPrecision >= 0 ? 'f' : 'g', myPrecision == 0 ? 6 : qAbs( myPrecision ) );
   return removeTrailingZeroes( s );
 }