Bug 113228: Remove To{Lower,Upper}Case from ns{C}String. r=bzbarsky, sr=jst

This commit is contained in:
jaggernaut@netscape.com
2002-01-05 11:18:57 +00:00
parent f49628fdd4
commit 3afddad17e
8 changed files with 0 additions and 118 deletions

View File

@@ -235,22 +235,6 @@ PRBool nsCString::SetCharAt(PRUnichar aChar,PRUint32 anIndex){
Lexomorphic transforms...
*********************************************************************/
/**
* Converts all chars in internal string to lower
* @update gess 01/04/99
*/
void nsCString::ToLowerCase() {
nsStr::ChangeCase(*this,PR_FALSE);
}
/**
* Converts all chars in internal string to upper
* @update gess 01/04/99
*/
void nsCString::ToUpperCase() {
nsStr::ChangeCase(*this,PR_TRUE);
}
/**
* This method is used to remove all occurances of the
* characters found in aSet from this string.