]> SALOME platform Git repositories - modules/yacs.git/commitdiff
Salome HOME
Typo-fix by Kunda
authoreap <eap@opencascade.com>
Fri, 9 Feb 2018 19:40:35 +0000 (22:40 +0300)
committereap <eap@opencascade.com>
Fri, 9 Feb 2018 19:40:35 +0000 (22:40 +0300)
http://www.salome-platform.org/forum/forum_9/16816690

salome_adm/unix/DEPRECATED/make_omniorb.in
src/Container/SALOME_ContainerManager.cxx
src/Launcher/Test/test_launcher.py

index 7f4736ce9555e8a53bac42766fabd1fe5a279c50..9f53286848ce887779b50e6d886898ae33b1aae2 100644 (file)
@@ -37,7 +37,7 @@
 %$(OMNIORB_IDL_CLN_CXX) %$(OMNIORB_IDL_CLN_H): ${top_builddir}/idl/%.idl
        $(OMNIORB_IDL) $(IDLCXXFLAGS) $(OMNIORB_IDLCXXFLAGS) $<
 
-# dependncies between idl files
+# dependencies between idl files
 depend_idl: .depidl
 
 # we use cpp to generate dependencies between idl files.
index a104432c743f688f9989b4cea9b3391469c8bfc1..59693ea01b0b41cdc23ff0f1d055bd35800cafd2 100644 (file)
@@ -933,16 +933,16 @@ std::string SALOME_ContainerManager::BuildCommandToLaunchLocalContainer(const En
 
 void SALOME_ContainerManager::RmTmpFile(std::string& tmpFileName)
 {
-  int lenght = tmpFileName.size();
-  if ( lenght  > 0)
+  int length = tmpFileName.size();
+  if ( length  > 0)
     {
 #ifdef WIN32
       std::string command = "del /F ";
 #else
       std::string command = "rm ";
 #endif
-      if ( lenght > 4 )
-        command += tmpFileName.substr(0, lenght - 3 );
+      if ( length > 4 )
+        command += tmpFileName.substr(0, length - 3 );
       else
         command += tmpFileName;
       command += '*';
index cbbf1b8998a90fb638942b802a3128f74b063561..d6bc828e1075c47d03ebd02b7ad5e68561e9d97f 100755 (executable)
@@ -574,7 +574,7 @@ f.close()
     f.close()
     os.chmod(abs_script_file, 0o755)
 
-    #environement script
+    #environment script
     env_file = "myEnv.sh"
     env_text = """export ENV_TEST_VAR="expected"
 """