new uvs2 releases : uppsrc-2586 tutorial-38 examples-141 reference-113

git-svn-id: svn://ultimatepp.org/upp/trunk@283 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
mdelfede 2008-06-07 22:57:08 +00:00
parent d2b54f7989
commit 0f391f3fb5
104 changed files with 1043 additions and 923 deletions

View file

@ -25,7 +25,7 @@
*
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
*/
/*
2008-01-26 Patches by Massimo Del Fedele :
- modified sources to use Ultimate++ containers instead std:: ones
@ -42,7 +42,7 @@ void ASString_Replace(WString &s, int Pos, int Len, WString const &newString)
return;
s.Remove(Pos, Len);
s.Insert(Pos, newString);
} // END ASString_Replace()
///////////////////////////////////////////////////////////////////////////////////////////
@ -58,7 +58,7 @@ int ASString_Find_First_Not_Of(WString const &s, WString const &Pattern, int pos
return pos;
else
return -1;
} // END ASString_Find_First_Not_Of()
///////////////////////////////////////////////////////////////////////////////////////////
@ -82,5 +82,5 @@ int ASString_ReverseFind(WString const &s, WString const &Pattern)
while( (k = s.Find(Pattern, k)) >= 0)
pos = k++;
return pos;
} // END ASString_ReverseFind()