diff options
author | Noel Grandin <noel@peralex.com> | 2013-10-31 15:40:40 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2013-11-07 14:27:06 +0200 |
commit | 24857c46daf06553e8618de46a0f3ece27c32675 (patch) | |
tree | d20a2f914f97cb1d6a4d38c7c61c0524062bf862 /ucb/source/ucp/file/bc.cxx | |
parent | f6ad2b7a52266e7a4d039f9ba557476e6881fa5f (diff) |
remove unnecessary use of OUString constructor in UCB module
Change-Id: Ic75e5aad03d66590e78275304c766c1c00179387
Diffstat (limited to 'ucb/source/ucp/file/bc.cxx')
-rw-r--r-- | ucb/source/ucp/file/bc.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ucb/source/ucp/file/bc.cxx b/ucb/source/ucp/file/bc.cxx index e179bfd7af8b..0578243aaa2e 100644 --- a/ucb/source/ucp/file/bc.cxx +++ b/ucb/source/ucp/file/bc.cxx @@ -278,7 +278,7 @@ BaseContent::getSupportedServiceNames() throw( RuntimeException ) { Sequence< OUString > ret( 1 ); - ret[0] = OUString("com.sun.star.ucb.FileContent"); + ret[0] = "com.sun.star.ucb.FileContent"; return ret; } |