summaryrefslogtreecommitdiff
path: root/desktop/source/deployment/registry/configuration
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2013-11-04 12:26:31 +0200
committerNoel Grandin <noel@peralex.com>2013-11-11 11:21:24 +0200
commit3e70dda33548a5392baaf99a3c4675285de7da46 (patch)
tree4146f3c0155dd31b0a01403e9ceeb716961790e8 /desktop/source/deployment/registry/configuration
parent7e441ef078c31796c5944a160793458f0bcbc2c4 (diff)
remove unnecessary use of OUString constructor in DESKTOP module
Change-Id: I467334094a621f4bab0ff251267412fb3a0fb4b7
Diffstat (limited to 'desktop/source/deployment/registry/configuration')
-rw-r--r--desktop/source/deployment/registry/configuration/dp_configuration.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/desktop/source/deployment/registry/configuration/dp_configuration.cxx b/desktop/source/deployment/registry/configuration/dp_configuration.cxx
index 9254a7c9ef6f..17b0f161a595 100644
--- a/desktop/source/deployment/registry/configuration/dp_configuration.cxx
+++ b/desktop/source/deployment/registry/configuration/dp_configuration.cxx
@@ -314,10 +314,10 @@ Reference<deployment::XPackage> BackendImpl::bindPackage_(
{
const OUString title( StrTitle::getTitle( ucbContent ) );
if (title.endsWithIgnoreAsciiCase( ".xcu" )) {
- mediaType = OUString("application/vnd.sun.star.configuration-data");
+ mediaType = "application/vnd.sun.star.configuration-data";
}
if (title.endsWithIgnoreAsciiCase( ".xcs" )) {
- mediaType = OUString("application/vnd.sun.star.configuration-schema");
+ mediaType = "application/vnd.sun.star.configuration-schema";
}
}
if (mediaType.isEmpty())