From d32be3ace8c8fd430bbecdf69f88a116b0ee91d1 Mon Sep 17 00:00:00 2001 From: Brij Mohan Lal Srivastava Date: Wed, 12 Nov 2014 14:24:10 +0530 Subject: 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 --- unotools/source/config/defaultoptions.cxx | 2 +- unotools/source/config/viewoptions.cxx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'unotools/source/config') 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) } -- cgit