diff options
Diffstat (limited to 'include/unotools/charclass.hxx')
-rw-r--r-- | include/unotools/charclass.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/unotools/charclass.hxx b/include/unotools/charclass.hxx index 4405d810875b..ab695beb52cb 100644 --- a/include/unotools/charclass.hxx +++ b/include/unotools/charclass.hxx @@ -81,10 +81,10 @@ public: const LanguageTag& getLanguageTag() const; /// isdigit() on ascii values of entire string - static bool isAsciiNumeric( const OUString& rStr ); + static bool isAsciiNumeric( std::u16string_view rStr ); /// isalpha() on ascii values of entire string - static bool isAsciiAlpha( const OUString& rStr ); + static bool isAsciiAlpha( std::u16string_view rStr ); /// whether type is pure numeric or not, e.g. return of getStringType static bool isNumericType( sal_Int32 nType ) |