diff options
author | Noel Grandin <noelgrandin@gmail.com> | 2016-01-30 19:09:35 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2016-01-31 12:04:02 +0000 |
commit | 1ef9f3988ee4dcbc77e1fdefa20442e044a67d4d (patch) | |
tree | 686b5f3247d28e19ba949b81fd5596dbe3a27401 /ucb | |
parent | 890ebf1cc6bb58ff21da19d7fd4b9b67eaa32a9c (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>
Diffstat (limited to 'ucb')
-rw-r--r-- | ucb/source/ucp/webdav/UCBDeadPropertyValue.cxx | 24 |
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>"; /* |