From 7cef49499886e7cdb58bc796a593896099b6b2d7 Mon Sep 17 00:00:00 2001 From: rnv Date: Wed, 30 Jan 2019 19:50:05 +0300 Subject: [PATCH] Fix for "23678: [CEA 13186] messages in the python window" issue. --- src/SMESH_I/SMESH_Gen_i.cxx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/SMESH_I/SMESH_Gen_i.cxx b/src/SMESH_I/SMESH_Gen_i.cxx index 86f9daa3b..e04476d35 100644 --- a/src/SMESH_I/SMESH_Gen_i.cxx +++ b/src/SMESH_I/SMESH_Gen_i.cxx @@ -3982,6 +3982,9 @@ SALOMEDS::TMPFile* SMESH_Gen_i::Save( SALOMEDS::SComponent_ptr theComponent, cmd+="\" \""; cmd+=meshfile; cmd+="\""; +#ifdef WIN32 + cmd+=" 2>NUL"; +#endif system(cmd.ToCString()); // MED writer to be used by storage process -- 2.30.2