Salome HOME
updated copyright message
[modules/shaper.git] / src / Events / Events_InfoMessage.cpp
index b8f4ef67d0745c3feebfaed363d0633d1ef71624..54088a90f7224774098dcdc7aa0933f931eca4ca 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2014-2017  CEA/DEN, EDF R&D
+// Copyright (C) 2014-2023  CEA, EDF
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Lesser General Public
 //
 // 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
+// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
 //
-// See http://www.salome-platform.org/ or
-// email : webmaster.salome@opencascade.com<mailto:webmaster.salome@opencascade.com>
+// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
 //
 
 #include "Events_InfoMessage.h"
-
-#ifdef WIN32
-#pragma warning(disable : 4996) // for sprintf
-#endif
+#include <Locale_Convert.h>
+#include <sstream>
 
 void Events_InfoMessage::addParameter(double theParam)
 {
-  char aBuf[50];
-  int n = sprintf(aBuf, "%g", theParam);
-  std::string aStr(aBuf);
-  myParameters.push_back(aStr);
+  std::stringstream aStream;
+  aStream << theParam;
+  myParameters.push_back(aStream.str());
 }
 
 void Events_InfoMessage::addParameter(int theParam)
 {
-  char aBuf[50];
-  int n = sprintf(aBuf, "%d", theParam);
-  std::string aStr(aBuf);
-  myParameters.push_back(aStr);
+  std::stringstream aStream;
+  aStream << theParam;
+  myParameters.push_back(aStream.str());
 }
 
 void Events_InfoMessage::send()
@@ -45,3 +40,9 @@ void Events_InfoMessage::send()
   std::shared_ptr<Events_Message> aMsg(new Events_InfoMessage(*this));
   Events_Loop::loop()->send(aMsg);
 }
+
+Events_InfoMessage& Events_InfoMessage::arg(const std::wstring& theParam)
+{
+  addParameter(Locale::Convert::toString(theParam));
+  return *this;
+}