summaryrefslogtreecommitdiff
path: root/include/sax
diff options
context:
space:
mode:
Diffstat (limited to 'include/sax')
-rw-r--r--include/sax/tools/converter.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/sax/tools/converter.hxx b/include/sax/tools/converter.hxx
index d1dbdac62d54..a372360f6d8d 100644
--- a/include/sax/tools/converter.hxx
+++ b/include/sax/tools/converter.hxx
@@ -112,13 +112,13 @@ public:
/** convert string to number with optional min and max values */
static bool convertNumber( sal_Int32& rValue,
- const OUString& rString,
+ std::u16string_view aString,
sal_Int32 nMin = SAL_MIN_INT32,
sal_Int32 nMax = SAL_MAX_INT32 );
/** convert string to number with optional min and max values */
static bool convertNumber64(sal_Int64& rValue,
- const OUString& rString,
+ std::u16string_view aString,
sal_Int64 nMin = SAL_MIN_INT64,
sal_Int64 nMax = SAL_MAX_INT64);