BUg 113228: Replace nsC?String::To(Lower|Upper)Case with global To(Lower|Upper)Case. r=dbaron, sr=jst
git-svn-id: svn://10.0.0.236/trunk@110075 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
@@ -251,28 +251,6 @@ void nsCString::ToUpperCase() {
|
||||
nsStr::ChangeCase(*this,PR_TRUE);
|
||||
}
|
||||
|
||||
/**
|
||||
* Converts chars in this to lowercase, and
|
||||
* stores them in aString
|
||||
* @update gess 01/04/99
|
||||
* @param aOut is a string to contain result
|
||||
*/
|
||||
void nsCString::ToLowerCase(nsCString& aString) const {
|
||||
aString=*this;
|
||||
nsStr::ChangeCase(aString,PR_FALSE);
|
||||
}
|
||||
|
||||
/**
|
||||
* Converts chars in this to uppercase, and
|
||||
* stores them in a given output string
|
||||
* @update gess 01/04/99
|
||||
* @param aOut is a string to contain result
|
||||
*/
|
||||
void nsCString::ToUpperCase(nsCString& aString) const {
|
||||
aString=*this;
|
||||
nsStr::ChangeCase(aString,PR_TRUE);
|
||||
}
|
||||
|
||||
/**
|
||||
* This method is used to remove all occurances of the
|
||||
* characters found in aSet from this string.
|
||||
|
||||
Reference in New Issue
Block a user