Bug 88413: Remove |GetUnicode()| from nsString (and replace it with |get()|). r=dbaron, rs=scc.

This removes all call-sites I can currently fix. Tomorrow I'll try to get someone to checkin my changes to security/ and I'll get some help with the Netscape side of things.

nsString::GetUnicode()'s final death-blow will be dealt soon. Please keep this in mind as you add new code :-)
This commit is contained in:
jaggernaut%netscape.com 2005-11-15 20:08:44 +00:00
parent a54d5daab7
commit 1c77f1a81f

View File

@ -846,7 +846,7 @@ nsLDAPAutoCompleteSession::OnLDAPSearchResult(nsILDAPMessage *aMessage)
// This seems to be necessary for things to work, though I'm not sure
// why that's true.
//
rv = mResults->SetSearchString(mSearchString.GetUnicode());
rv = mResults->SetSearchString(mSearchString.get());
if (NS_FAILED(rv)) {
NS_ERROR("nsLDAPAutoCompleteSession::OnLDAPSearchResult(): couldn't "
"set search string in results object");