Salome HOME
*** empty log message ***
[modules/multipr.git] / src / MULTIPR / MULTIPR_Utils.cxx
index df553041928506a3a861b64c0db867962824c00f..6ce5e8ca7084d474b546eebe4a35abab4398382a 100644 (file)
@@ -42,10 +42,8 @@ void multipr::trim(char* pStr, char pChar)
 }
 
 
-bool multipr::startWith(const char* pStr, const char* pStrPrefix)
+bool multipr::startsWith(const char* pStr, const char* pStrPrefix)
 {
-       int lenStr = strlen(pStr);
-       
        int i = 0;
        while ((pStr[i] != '\0') && (pStrPrefix[i] != '\0') && (pStr[i] == pStrPrefix[i]))
        {