summaryrefslogtreecommitdiff
path: root/registry
diff options
context:
space:
mode:
Diffstat (limited to 'registry')
-rw-r--r--registry/source/regimpl.cxx2
-rw-r--r--registry/source/regimpl.hxx5
2 files changed, 5 insertions, 2 deletions
diff --git a/registry/source/regimpl.cxx b/registry/source/regimpl.cxx
index 27a4592c9dc2..dc87985ab623 100644
--- a/registry/source/regimpl.cxx
+++ b/registry/source/regimpl.cxx
@@ -1005,7 +1005,7 @@ RegError ORegistry::loadAndSaveValue(ORegKey* pTargetKey,
}
RegError ORegistry::checkBlop(OStoreStream& rValue,
- const OUString& sTargetPath,
+ std::u16string_view sTargetPath,
sal_uInt32 srcValueSize,
sal_uInt8 const * pSrcBuffer,
bool bReport)
diff --git a/registry/source/regimpl.hxx b/registry/source/regimpl.hxx
index e049cf147c18..db2af7e77846 100644
--- a/registry/source/regimpl.hxx
+++ b/registry/source/regimpl.hxx
@@ -20,6 +20,9 @@
#ifndef INCLUDED_REGISTRY_SOURCE_REGIMPL_HXX
#define INCLUDED_REGISTRY_SOURCE_REGIMPL_HXX
+#include <sal/config.h>
+
+#include <string_view>
#include <unordered_map>
#include <regapi.hxx>
@@ -111,7 +114,7 @@ private:
bool bReport);
static RegError checkBlop(store::OStoreStream& rValue,
- const OUString& sTargetPath,
+ std::u16string_view sTargetPath,
sal_uInt32 srcValueSize,
sal_uInt8 const * pSrcBuffer,
bool bReport);