summaryrefslogtreecommitdiff
path: root/forms/source/xforms/xpathlib
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2013-11-04 11:46:53 +0200
committerNoel Grandin <noel@peralex.com>2013-11-11 11:21:22 +0200
commit373f352ef2f39965b4ef830acfc1554f8e2e3abf (patch)
treeeb0b7044d57a2e72a461e2ffd2ae370d4f52760e /forms/source/xforms/xpathlib
parent316be1b6f18963b39aab7729bf93fc9c86519e33 (diff)
remove unnecessary use of OUString constructor in FORMS module
Change-Id: Ibbf477e99ba0c07a9138497496442b0f9296f5c3
Diffstat (limited to 'forms/source/xforms/xpathlib')
-rw-r--r--forms/source/xforms/xpathlib/extension.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/forms/source/xforms/xpathlib/extension.cxx b/forms/source/xforms/xpathlib/extension.cxx
index 6e93845b61bd..146d94b7e6bd 100644
--- a/forms/source/xforms/xpathlib/extension.cxx
+++ b/forms/source/xforms/xpathlib/extension.cxx
@@ -47,7 +47,7 @@ OUString SAL_CALL CLibxml2XFormsExtension::getImplementationName_Static()
Sequence< OUString > SAL_CALL CLibxml2XFormsExtension::getSupportedServiceNames_Static()
{
Sequence< OUString > aSequence(1);
- aSequence[0] = OUString("com.sun.star.xml.xpath.XPathExtension");
+ aSequence[0] = "com.sun.star.xml.xpath.XPathExtension";
return aSequence;
}