summaryrefslogtreecommitdiff
path: root/unoidl/source
diff options
context:
space:
mode:
Diffstat (limited to 'unoidl/source')
-rw-r--r--unoidl/source/legacyprovider.cxx4
-rw-r--r--unoidl/source/unoidl-check.cxx8
2 files changed, 6 insertions, 6 deletions
diff --git a/unoidl/source/legacyprovider.cxx b/unoidl/source/legacyprovider.cxx
index 1d147a975582..ab99fcf59dd1 100644
--- a/unoidl/source/legacyprovider.cxx
+++ b/unoidl/source/legacyprovider.cxx
@@ -26,9 +26,9 @@ namespace unoidl::detail {
namespace {
-std::vector< OUString > translateAnnotations(OUString const & documentation) {
+std::vector< OUString > translateAnnotations(std::u16string_view documentation) {
std::vector< OUString > ans;
- if (documentation.indexOf("@deprecated") != -1) {
+ if (documentation.find(u"@deprecated") != std::u16string_view::npos) {
//TODO: this check is somewhat crude
ans.push_back("deprecated");
}
diff --git a/unoidl/source/unoidl-check.cxx b/unoidl/source/unoidl-check.cxx
index 58b179ea41b0..253079024106 100644
--- a/unoidl/source/unoidl-check.cxx
+++ b/unoidl/source/unoidl-check.cxx
@@ -886,10 +886,10 @@ void checkMap(
}
}
-bool valid(OUString const & identifier) {
- for (sal_Int32 i = 0;; ++i) {
- i = identifier.indexOf('_', i);
- if (i == -1) {
+bool valid(std::u16string_view identifier) {
+ for (size_t i = 0;; ++i) {
+ i = identifier.find('_', i);
+ if (i == std::u16string_view::npos) {
return true;
}
if (!rtl::isAsciiUpperCase(identifier[0]) || identifier[i - 1] == '_') {