summaryrefslogtreecommitdiff
path: root/unotools
diff options
context:
space:
mode:
authorBrij Mohan Lal Srivastava <contactbrijmohan@gmail.com>2014-11-12 14:24:10 +0530
committerStephan Bergmann <sbergman@redhat.com>2014-11-14 09:20:38 +0100
commitd32be3ace8c8fd430bbecdf69f88a116b0ee91d1 (patch)
treeb373c084cb124434e0498867b24bc7bb333155dd /unotools
parentf5e86ebc097f0f8bc5b282511149cb026710ecde (diff)
fdo#86023 - O[U]String needs a 'clear' method
Added clear() method to OString and OUString class, Updated appropriate call-sites. Change-Id: I0ba97fa6dc7af3e31b605953089a4e8e9c3e61ac Signed-off-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'unotools')
-rw-r--r--unotools/source/config/defaultoptions.cxx2
-rw-r--r--unotools/source/config/viewoptions.cxx2
-rw-r--r--unotools/source/ucbhelper/localfilehelper.cxx2
3 files changed, 3 insertions, 3 deletions
diff --git a/unotools/source/config/defaultoptions.cxx b/unotools/source/config/defaultoptions.cxx
index 3c30a250228a..de38a3b2a00a 100644
--- a/unotools/source/config/defaultoptions.cxx
+++ b/unotools/source/config/defaultoptions.cxx
@@ -244,7 +244,7 @@ SvtDefaultOptions_Impl::SvtDefaultOptions_Impl() : ConfigItem( "Office.Common/Pa
case ::com::sun::star::uno::TypeClass_SEQUENCE :
{
// single paths
- aFullPath = OUString();
+ aFullPath.clear();
Sequence < OUString > aList;
if ( pValues[nProp] >>= aList )
{
diff --git a/unotools/source/config/viewoptions.cxx b/unotools/source/config/viewoptions.cxx
index 732d17084ffb..ff45cfb77cc6 100644
--- a/unotools/source/config/viewoptions.cxx
+++ b/unotools/source/config/viewoptions.cxx
@@ -281,7 +281,7 @@ OUString SvtViewOptionsBase_Impl::GetWindowState( const OUString& sName )
}
catch(const css::uno::Exception& ex)
{
- sWindowState = OUString();
+ sWindowState.clear();
SVTVIEWOPTIONS_LOG_UNEXPECTED_EXCEPTION(ex)
}
diff --git a/unotools/source/ucbhelper/localfilehelper.cxx b/unotools/source/ucbhelper/localfilehelper.cxx
index 1d2dedb36a8c..4d08c63a58e7 100644
--- a/unotools/source/ucbhelper/localfilehelper.cxx
+++ b/unotools/source/ucbhelper/localfilehelper.cxx
@@ -75,7 +75,7 @@ bool LocalFileHelper::ConvertURLToSystemPath( const OUString& rName, OUString& r
bool LocalFileHelper::ConvertPhysicalNameToURL(const OUString& rName, OUString& rReturn)
{
- rReturn = OUString();
+ rReturn.clear();
Reference< XUniversalContentBroker > pBroker(
UniversalContentBroker::create(
comphelper::getProcessComponentContext() ) );