summaryrefslogtreecommitdiff
path: root/xmlsecurity
diff options
context:
space:
mode:
authorThorsten Behrens <Thorsten.Behrens@CIB.de>2017-06-17 09:56:04 +0200
committerThorsten Behrens <Thorsten.Behrens@CIB.de>2017-06-21 22:16:55 +0200
commitbe197b089a15af9a2cbbac5eb4ae3601cebd8f51 (patch)
treedb9364764db2a6914aa6e85929bc53c4124791bb /xmlsecurity
parentb22fb3daf9a4af2991187aa909260ffdb0222f4d (diff)
gpg4libre: fix build, explicit ctor call
Change-Id: Iec7ca4e37d6f5c4f63aaa22acfa0bdd395747471
Diffstat (limited to 'xmlsecurity')
-rw-r--r--xmlsecurity/source/gpg/XMLSecurityContext.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/xmlsecurity/source/gpg/XMLSecurityContext.cxx b/xmlsecurity/source/gpg/XMLSecurityContext.cxx
index 85888819ea4c..cfc391f56ec1 100644
--- a/xmlsecurity/source/gpg/XMLSecurityContext.cxx
+++ b/xmlsecurity/source/gpg/XMLSecurityContext.cxx
@@ -94,7 +94,7 @@ void SAL_CALL XMLSecurityContextGpg::setDefaultSecurityEnvironmentIndex(sal_Int3
/* XServiceInfo */
OUString SAL_CALL XMLSecurityContextGpg::getImplementationName() {
- return "com.sun.star.xml.security.gpg.XMLSecurityContext_GpgImpl";
+ return OUString("com.sun.star.xml.security.gpg.XMLSecurityContext_GpgImpl");
}
/* XServiceInfo */
@@ -104,7 +104,7 @@ sal_Bool SAL_CALL XMLSecurityContextGpg::supportsService( const OUString& servic
/* XServiceInfo */
Sequence< OUString > SAL_CALL XMLSecurityContextGpg::getSupportedServiceNames() {
- return { "com.sun.star.xml.crypto.XMLSecurityContext" };
+ return { OUString("com.sun.star.xml.crypto.XMLSecurityContext") };
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */