From: vsr Date: Thu, 15 Mar 2012 09:24:23 +0000 (+0000) Subject: Format of preferences messages has been changed ('/' is used as separator instead... X-Git-Tag: V6_5_0a1~47 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=b0b26bc35f3ceaaa643ede2be7c17cfd8a50cac8;p=modules%2Fsmesh.git Format of preferences messages has been changed ('/' is used as separator instead of ':') --- diff --git a/src/SMESH_I/SMESH_Gen_i.cxx b/src/SMESH_I/SMESH_Gen_i.cxx index 5dc206717..97e4ede84 100644 --- a/src/SMESH_I/SMESH_Gen_i.cxx +++ b/src/SMESH_I/SMESH_Gen_i.cxx @@ -821,13 +821,13 @@ void SMESH_Gen_i::SetOption(const char* name, const char* value) if ( strcmp(name, "historical_python_dump") == 0 ) { myIsHistoricalPythonDump = ( value[0] == '1' || toupper(value[0]) == 'T' ); // 1 || true - msgToGUI = "preferences:SMESH:historical_python_dump:"; + msgToGUI = "preferences/SMESH/historical_python_dump/"; msgToGUI += myIsHistoricalPythonDump ? "true" : "false"; } else if ( strcmp(name, "forget_mesh_on_hyp_modif") == 0 ) { myToForgetMeshDataOnHypModif = ( value[0] == '1' || toupper(value[0]) == 'T' ); // 1 || true - msgToGUI = "preferences:SMESH:forget_mesh_on_hyp_modif:"; + msgToGUI = "preferences/SMESH/forget_mesh_on_hyp_modif/"; msgToGUI += myToForgetMeshDataOnHypModif ? "true" : "false"; }