X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModuleBase%2FModuleBase_LabelValue.cpp;h=a55162391275ba6de6bd5c6da7e28ec9e6fa1051;hb=5c51b3b5025a77e6bb9ceccb29145b153beb5b00;hp=46cf12aee5ca6a29a93d66cb18ac526f4b142e1f;hpb=cfe233250e41da5c4f0a14c3a4e60e1b58591a7d;p=modules%2Fshaper.git diff --git a/src/ModuleBase/ModuleBase_LabelValue.cpp b/src/ModuleBase/ModuleBase_LabelValue.cpp index 46cf12aee..a55162391 100644 --- a/src/ModuleBase/ModuleBase_LabelValue.cpp +++ b/src/ModuleBase/ModuleBase_LabelValue.cpp @@ -1,11 +1,25 @@ -// Copyright (C) 2014-20xx CEA/DEN, EDF R&D - -// File: ModuleBase_IWorkshop.cpp -// Created: 30 Nov 2016 -// Author: Natalia ERMOLAEVA +// Copyright (C) 2014-2019 CEA/DEN, EDF R&D +// +// This library is free software; you can redistribute it and/or +// modify it under the terms of the GNU Lesser General Public +// License as published by the Free Software Foundation; either +// version 2.1 of the License, or (at your option) any later version. +// +// This library is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +// Lesser General Public License for more details. +// +// You should have received a copy of the GNU Lesser General Public +// License along with this library; if not, write to the Free Software +// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +// +// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com +// #include #include +#include #include #include @@ -31,14 +45,7 @@ ModuleBase_LabelValue::ModuleBase_LabelValue(QWidget* theParent, const QString& myLabelValue = new QLabel("", this); aLayout->addWidget(myLabelValue, 1); - // VSR 01/07/2010: Disable thousands separator for spin box - // (to avoid inconsistency of double-2-string and string-2-double conversion) - QLocale loc; - loc.setNumberOptions(loc.numberOptions() | - QLocale::OmitGroupSeparator | - QLocale::RejectGroupSeparator); - setLocale(loc); - + setLocale(ModuleBase_Tools::doubleLocale()); aLayout->addStretch(1); } @@ -52,5 +59,5 @@ void ModuleBase_LabelValue::setValue(const double theValue) QString aStrValue = locale().toString(theValue, myPrecision >= 0 ? 'f' : 'g', qAbs(myPrecision)); myLabelValue->setText(aStrValue); - myLabelValue->setToolTip(QString::number(theValue)); + myLabelValue->setToolTip(aStrValue); }