summaryrefslogtreecommitdiff
path: root/ucb
diff options
context:
space:
mode:
authorNoel Grandin <noelgrandin@gmail.com>2016-01-30 19:09:35 +0200
committerAshod Nakashian <ashod.nakashian@collabora.co.uk>2016-07-20 01:25:56 -0400
commitda695330ee333d3210fd6ff236294684e27c5f82 (patch)
tree300b5da7ad08d4d94eea8b1b618a6f7e5969e7e4 /ucb
parentb41c9ce2aaaf7ef38071298c7427f6b0905a9bd9 (diff)
unnecessary use of OUString constructor
Change-Id: Idd31b0a53c8318af69bbcd32f6798721ec8eb8e1 Reviewed-on: https://gerrit.libreoffice.org/21945 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com> (cherry picked from commit 1ef9f3988ee4dcbc77e1fdefa20442e044a67d4d)
Diffstat (limited to 'ucb')
-rw-r--r--ucb/source/ucp/webdav/UCBDeadPropertyValue.cxx24
1 files changed, 12 insertions, 12 deletions
diff --git a/ucb/source/ucp/webdav/UCBDeadPropertyValue.cxx b/ucb/source/ucp/webdav/UCBDeadPropertyValue.cxx
index a00ad35b6027..4e97492b1d35 100644
--- a/ucb/source/ucp/webdav/UCBDeadPropertyValue.cxx
+++ b/ucb/source/ucp/webdav/UCBDeadPropertyValue.cxx
@@ -28,31 +28,31 @@ using namespace ::com::sun::star;
// static
const OUString UCBDeadPropertyValue::aTypeString
- = OUString( "string" );
+ = "string";
const OUString UCBDeadPropertyValue::aTypeLong
- = OUString( "long" );
+ = "long";
const OUString UCBDeadPropertyValue::aTypeShort
- = OUString( "short" );
+ = "short";
const OUString UCBDeadPropertyValue::aTypeBoolean
- = OUString( "boolean" );
+ = "boolean";
const OUString UCBDeadPropertyValue::aTypeChar
- = OUString( "char" );
+ = "char";
const OUString UCBDeadPropertyValue::aTypeByte
- = OUString( "byte" );
+ = "byte";
const OUString UCBDeadPropertyValue::aTypeHyper
- = OUString( "hyper" );
+ = "hyper";
const OUString UCBDeadPropertyValue::aTypeFloat
- = OUString( "float" );
+ = "float);
const OUString UCBDeadPropertyValue::aTypeDouble
- = OUString( "double" );
+ = "double";
// static
const OUString UCBDeadPropertyValue::aXMLPre
- = OUString( "<ucbprop><type>" );
+ = "<ucbprop><type>";
const OUString UCBDeadPropertyValue::aXMLMid
- = OUString( "</type><value>" );
+ = "</type><value>";
const OUString UCBDeadPropertyValue::aXMLEnd
- = OUString( "</value></ucbprop>" );
+ = "</value></ucbprop>";
/*