mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-05 00:25:27 +00:00
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:
parent
a54d5daab7
commit
1c77f1a81f
@ -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");
|
||||
|
Loading…
Reference in New Issue
Block a user