X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FEvents%2FEvents_InfoMessage.cpp;h=a9b3cd3fbcfe5617a59b4060ef8611b669876cb1;hb=8c2723caf52fd7b05d6d950059bc77adc711f18a;hp=38190e4e285244037f57483c71a3ed79bc446e02;hpb=f396e787993889d837917065a7752e3326194361;p=modules%2Fshaper.git diff --git a/src/Events/Events_InfoMessage.cpp b/src/Events/Events_InfoMessage.cpp index 38190e4e2..a9b3cd3fb 100644 --- a/src/Events/Events_InfoMessage.cpp +++ b/src/Events/Events_InfoMessage.cpp @@ -1,8 +1,21 @@ -// Copyright (C) 2014-20xx CEA/DEN, EDF R&D - -// File: Events_InfoMessage.cpp -// Created: 16 June 2016 -// Author: Vitaly SMETANNIKOV +// 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 "Events_InfoMessage.h" @@ -12,18 +25,16 @@ void Events_InfoMessage::addParameter(double theParam) { - char aBuf[50]; - int n = sprintf(aBuf, "%g", theParam); - std::string aStr(aBuf); - myParameters.push_back(aStr); + static char aBuf[50]; + sprintf(aBuf, "%g", theParam); + myParameters.push_back(std::string(aBuf)); } void Events_InfoMessage::addParameter(int theParam) { - char aBuf[50]; - int n = sprintf(aBuf, "%d", theParam); - std::string aStr(aBuf); - myParameters.push_back(aStr); + static char aBuf[50]; + sprintf(aBuf, "%d", theParam); + myParameters.push_back(std::string(aBuf)); } void Events_InfoMessage::send()