Bug 1648010 - Replace uses of NS_LITERAL_STRING/NS_LITERAL_CSTRING macros by _ns literals. r=geckoview-reviewers,jgilbert,agi,hsivonen,froydnj

Differential Revision: https://phabricator.services.mozilla.com/D80860
This commit is contained in:
Simon Giesecke
2020-07-01 08:29:29 +00:00
parent f8f0145474
commit a69d79b6db
1219 changed files with 10215 additions and 12215 deletions

View File

@@ -1662,7 +1662,7 @@ nsresult nsAutoCompleteController::CompleteValue(nsString& aValue)
// Autocompleting something other than a URI from the middle.
// Use the format "searchstring >> full string" to indicate to the user
// what we are going to replace their search string with.
SetValueOfInputTo(mSearchString + NS_LITERAL_STRING(" >> ") + aValue,
SetValueOfInputTo(mSearchString + u" >> "_ns + aValue,
nsIAutoCompleteInput::TEXTVALUE_REASON_COMPLETEDEFAULT);
endSelect = mSearchString.Length() + 4 + aValue.Length();