diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2022-04-01 17:42:34 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2022-04-02 13:31:19 +0200 |
commit | 1927b51993fb68907a75765676179b08ab195196 (patch) | |
tree | 1b7d09c1b5e7ea945fb6ea618a4c100e8630ebb4 /starmath/source/edit.cxx | |
parent | 0dfa444f393a5766d36fe7d2480d0c8ec832e329 (diff) |
loplugin:stringviewparam convert methods using indexOf
.. and lastIndexOf, which convert to find and rfind
Change-Id: I6c4156cf904774c0d867f85a4c2785dba7593f62
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/132445
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'starmath/source/edit.cxx')
-rw-r--r-- | starmath/source/edit.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/starmath/source/edit.cxx b/starmath/source/edit.cxx index 2440a92be948..0b14c492ed23 100644 --- a/starmath/source/edit.cxx +++ b/starmath/source/edit.cxx @@ -662,9 +662,9 @@ void SmEditWindow::SelPrevMark() } // returns true iff 'rText' contains a mark -static bool HasMark(const OUString& rText) +static bool HasMark(std::u16string_view rText) { - return rText.indexOf("<?>") != -1; + return rText.find(u"<?>") != std::u16string_view::npos; } ESelection SmEditWindow::GetSelection() const |