summaryrefslogtreecommitdiff
path: root/dtrans/source/cnttype
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2013-11-04 12:22:48 +0200
committerNoel Grandin <noel@peralex.com>2013-11-11 11:21:23 +0200
commit7e441ef078c31796c5944a160793458f0bcbc2c4 (patch)
tree3935e07328ff11622e3ea7341e1b5e4d81c842a9 /dtrans/source/cnttype
parent484819a235f578df6e6146e536ab542fc2f04391 (diff)
remove unnecessary use of OUString constructor in DTRANS module
Change-Id: I748f9a1f214245b96c04da7a92dad43512fea47e
Diffstat (limited to 'dtrans/source/cnttype')
-rw-r--r--dtrans/source/cnttype/mcnttfactory.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/dtrans/source/cnttype/mcnttfactory.cxx b/dtrans/source/cnttype/mcnttfactory.cxx
index 8aa26febb320..6d955d262245 100644
--- a/dtrans/source/cnttype/mcnttfactory.cxx
+++ b/dtrans/source/cnttype/mcnttfactory.cxx
@@ -44,7 +44,7 @@ namespace
Sequence< OUString > SAL_CALL MimeContentTypeFactory_getSupportedServiceNames( )
{
Sequence< OUString > aRet(1);
- aRet[0] = OUString("com.sun.star.datatransfer.MimeContentTypeFactory");
+ aRet[0] = "com.sun.star.datatransfer.MimeContentTypeFactory";
return aRet;
}
}