Make nsFind::Find actually use a string type as input.

Futureproofing follow-up to b89570e31cfb84449241e363a595540b8810c217
This commit is contained in:
wolfbeast 2019-05-29 11:25:58 +02:00 committed by Roy Tam
commit d7fad8539b
5 changed files with 4 additions and 22 deletions

View file

@ -29,6 +29,6 @@ interface nsIFind : nsISupports
* end (forward) or start (backward).
* @retval A range spanning the match that was found (or null).
*/
nsIDOMRange Find(in wstring aPatText, in nsIDOMRange aSearchRange,
nsIDOMRange Find(in AString aPatText, in nsIDOMRange aSearchRange,
in nsIDOMRange aStartPoint, in nsIDOMRange aEndPoint);
};