summaryrefslogtreecommitdiff
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 19:11:37 +0200
commit168dc373ce6b177ce994219ebd267cc471c00aa0 (patch)
tree3cfefc3b28de21d6336c67d2dfc9ab471b1467db
parentbd698440c4f488b89af2a2352579d19e9d92eb5d (diff)
gpg4libre: fix build, explicit ctor call
Change-Id: Iec7ca4e37d6f5c4f63aaa22acfa0bdd395747471
-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: */