summaryrefslogtreecommitdiff
path: root/filter/source/config
diff options
context:
space:
mode:
authorStephan Bergmann <stephan.bergmann@allotropia.de>2023-11-29 18:02:34 +0100
committerStephan Bergmann <stephan.bergmann@allotropia.de>2023-11-29 22:08:20 +0100
commit966bf32c4f160b25506a14c772125e5ff50314c0 (patch)
treecb506a41348f8f7984ce3409d673383ceaaf3a6c /filter/source/config
parent44ddd6e586a17c90be2ecda7a99770a438996597 (diff)
Extended loplugin:ostr: filter
Change-Id: I900c7e070f9830b3da1dbcce75d418a75652d1ef Reviewed-on: https://gerrit.libreoffice.org/c/core/+/160121 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <stephan.bergmann@allotropia.de>
Diffstat (limited to 'filter/source/config')
-rw-r--r--filter/source/config/cache/filtercache.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/filter/source/config/cache/filtercache.cxx b/filter/source/config/cache/filtercache.cxx
index 186eadd1a317..8a6f88703823 100644
--- a/filter/source/config/cache/filtercache.cxx
+++ b/filter/source/config/cache/filtercache.cxx
@@ -768,7 +768,7 @@ css::uno::Reference< css::uno::XInterface > FilterCache::impl_openConfig(std::un
return m_xConfigTypes;
sPath = CFGPACKAGE_TD_TYPES;
pConfig = &m_xConfigTypes;
- sRtlLog = "impl_openconfig(E_PROVIDER_TYPES)";
+ sRtlLog = "impl_openconfig(E_PROVIDER_TYPES)"_ostr;
}
break;
@@ -778,7 +778,7 @@ css::uno::Reference< css::uno::XInterface > FilterCache::impl_openConfig(std::un
return m_xConfigFilters;
sPath = CFGPACKAGE_TD_FILTERS;
pConfig = &m_xConfigFilters;
- sRtlLog = "impl_openconfig(E_PROVIDER_FILTERS)";
+ sRtlLog = "impl_openconfig(E_PROVIDER_FILTERS)"_ostr;
}
break;
@@ -788,7 +788,7 @@ css::uno::Reference< css::uno::XInterface > FilterCache::impl_openConfig(std::un
return m_xConfigOthers;
sPath = CFGPACKAGE_TD_OTHERS;
pConfig = &m_xConfigOthers;
- sRtlLog = "impl_openconfig(E_PROVIDER_OTHERS)";
+ sRtlLog = "impl_openconfig(E_PROVIDER_OTHERS)"_ostr;
}
break;
@@ -798,7 +798,7 @@ css::uno::Reference< css::uno::XInterface > FilterCache::impl_openConfig(std::un
// the old configuration format only. It's not cached!
sPath = CFGPACKAGE_TD_OLD;
pConfig = &xOld;
- sRtlLog = "impl_openconfig(E_PROVIDER_OLD)";
+ sRtlLog = "impl_openconfig(E_PROVIDER_OLD)"_ostr;
}
break;