diff options
Diffstat (limited to 'stoc')
-rw-r--r-- | stoc/source/implementationregistration/implreg.cxx | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/stoc/source/implementationregistration/implreg.cxx b/stoc/source/implementationregistration/implreg.cxx index 0d9cfb80ffda..f554cedb4570 100644 --- a/stoc/source/implementationregistration/implreg.cxx +++ b/stoc/source/implementationregistration/implreg.cxx @@ -57,27 +57,27 @@ using namespace osl; namespace { constexpr OUStringLiteral slash_UNO_slash_REGISTRY_LINKS - = "/UNO/REGISTRY_LINKS"; + = u"/UNO/REGISTRY_LINKS"; constexpr OUStringLiteral slash_IMPLEMENTATIONS - = "/IMPLEMENTATIONS"; + = u"/IMPLEMENTATIONS"; constexpr OUStringLiteral slash_UNO - = "/UNO"; + = u"/UNO"; constexpr OUStringLiteral slash_UNO_slash_SERVICES - = "/UNO/SERVICES"; + = u"/UNO/SERVICES"; constexpr OUStringLiteral slash_UNO_slash_SINGLETONS - = "/UNO/SINGLETONS"; + = u"/UNO/SINGLETONS"; constexpr OUStringLiteral slash_SERVICES - = "/SERVICES/"; + = u"/SERVICES/"; constexpr OUStringLiteral slash_UNO_slash_LOCATION - = "/UNO/LOCATION"; + = u"/UNO/LOCATION"; constexpr OUStringLiteral slash_UNO_slash_ACTIVATOR - = "/UNO/ACTIVATOR"; + = u"/UNO/ACTIVATOR"; constexpr OUStringLiteral colon_old - = ":old"; + = u":old"; constexpr OUStringLiteral com_sun_star_registry_SimpleRegistry - = "com.sun.star.registry.SimpleRegistry"; + = u"com.sun.star.registry.SimpleRegistry"; constexpr OUStringLiteral Registry - = "Registry"; + = u"Registry"; // static deleteAllLinkReferences() |