summaryrefslogtreecommitdiffstats
path: root/embedding/components/find/nsFind.cpp
diff options
context:
space:
mode:
authorwolfbeast <mcwerewolf@wolfbeast.com>2019-05-29 11:25:58 +0200
committerwolfbeast <mcwerewolf@wolfbeast.com>2019-05-29 11:25:58 +0200
commitd873bd96953a6c8de8a9355e330400e0799db661 (patch)
treea90c8c90e9e6a495038fa1c4242b9855f7843ef8 /embedding/components/find/nsFind.cpp
parent50062bdfc004c8e24e3344ffe6991894ee0e6d09 (diff)
downloadUXP-d873bd96953a6c8de8a9355e330400e0799db661.tar
UXP-d873bd96953a6c8de8a9355e330400e0799db661.tar.gz
UXP-d873bd96953a6c8de8a9355e330400e0799db661.tar.lz
UXP-d873bd96953a6c8de8a9355e330400e0799db661.tar.xz
UXP-d873bd96953a6c8de8a9355e330400e0799db661.zip
Make nsFind::Find actually use a string type as input.
Futureproofing follow-up to b89570e31cfb84449241e363a595540b8810c217
Diffstat (limited to 'embedding/components/find/nsFind.cpp')
-rw-r--r--embedding/components/find/nsFind.cpp6
1 files changed, 1 insertions, 5 deletions
diff --git a/embedding/components/find/nsFind.cpp b/embedding/components/find/nsFind.cpp
index 6987c11d3..63304dafb 100644
--- a/embedding/components/find/nsFind.cpp
+++ b/embedding/components/find/nsFind.cpp
@@ -932,7 +932,7 @@ nsFind::ResetAll()
// Take nodes out of the tree with NextNode, until null (NextNode will return 0
// at the end of our range).
NS_IMETHODIMP
-nsFind::Find(const char16_t* aPatText, nsIDOMRange* aSearchRange,
+nsFind::Find(const nsAString& aPatText, nsIDOMRange* aSearchRange,
nsIDOMRange* aStartPoint, nsIDOMRange* aEndPoint,
nsIDOMRange** aRangeRet)
{
@@ -949,10 +949,6 @@ nsFind::Find(const char16_t* aPatText, nsIDOMRange* aSearchRange,
NS_ENSURE_ARG_POINTER(aRangeRet);
*aRangeRet = 0;
- if (!aPatText) {
- return NS_ERROR_NULL_POINTER;
- }
-
ResetAll();
nsAutoString patAutoStr(aPatText);