summaryrefslogtreecommitdiff
path: root/unodevtools/source/skeletonmaker/skeletoncommon.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'unodevtools/source/skeletonmaker/skeletoncommon.cxx')
-rw-r--r--unodevtools/source/skeletonmaker/skeletoncommon.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/unodevtools/source/skeletonmaker/skeletoncommon.cxx b/unodevtools/source/skeletonmaker/skeletoncommon.cxx
index 37041a8be951..21a174b69e1a 100644
--- a/unodevtools/source/skeletonmaker/skeletoncommon.cxx
+++ b/unodevtools/source/skeletonmaker/skeletoncommon.cxx
@@ -237,7 +237,7 @@ void checkType(rtl::Reference< TypeManager > const & manager,
void checkDefaultInterfaces(
std::set< OUString >& interfaces,
const std::set< OUString >& services,
- const OUString & propertyhelper)
+ std::u16string_view propertyhelper)
{
if ( services.empty() ) {
interfaces.erase("com.sun.star.lang.XServiceInfo");
@@ -245,7 +245,7 @@ void checkDefaultInterfaces(
interfaces.insert("com.sun.star.lang.XServiceInfo");
}
- if ( propertyhelper == "_" ) {
+ if ( propertyhelper == u"_" ) {
interfaces.erase("com.sun.star.beans.XPropertySet");
interfaces.erase("com.sun.star.beans.XFastPropertySet");
interfaces.erase("com.sun.star.beans.XPropertyAccess");