From 5285beeaa49f6678b471d472868c305c7d9da5f9 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Fri, 25 Oct 2013 17:35:42 +0200 Subject: remove redundant calls to OUString constructor in if expression Convert code like: if( aStr == OUString("xxxx") ) to this: if( aStr == "xxxx" ) Change-Id: I8d201f048477731eff590fb988259ef0935c080c --- unotools/source/ucbhelper/ucblockbytes.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'unotools') diff --git a/unotools/source/ucbhelper/ucblockbytes.cxx b/unotools/source/ucbhelper/ucblockbytes.cxx index ca4e57839389..5c7f78f35f87 100644 --- a/unotools/source/ucbhelper/ucblockbytes.cxx +++ b/unotools/source/ucbhelper/ucblockbytes.cxx @@ -186,7 +186,7 @@ void SAL_CALL UcbPropertiesChangeListener_Impl::propertiesChange ( const Sequenc for (i = 0; i < n; i++) { PropertyChangeEvent evt (rEvent[i]); - if (evt.PropertyName == OUString("DocumentHeader")) + if (evt.PropertyName == "DocumentHeader") { Sequence aHead; if (evt.NewValue >>= aHead) @@ -211,7 +211,7 @@ void SAL_CALL UcbPropertiesChangeListener_Impl::propertiesChange ( const Sequenc m_xLockBytes->SetStreamValid_Impl(); } - else if (evt.PropertyName == OUString("PresentationURL")) + else if (evt.PropertyName == "PresentationURL") { OUString aUrl; if (evt.NewValue >>= aUrl) @@ -224,7 +224,7 @@ void SAL_CALL UcbPropertiesChangeListener_Impl::propertiesChange ( const Sequenc } } } - else if (evt.PropertyName == OUString("MediaType")) + else if (evt.PropertyName == "MediaType") { OUString aContentType; if (evt.NewValue >>= aContentType) -- cgit v1.2.3