summaryrefslogtreecommitdiff
path: root/sc/source/filter/ftools
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2016-05-04 12:42:40 +0200
committerStephan Bergmann <sbergman@redhat.com>2016-05-04 12:42:40 +0200
commitf153d5cb12372dddaaceaaaa0c0892f4ba3d12aa (patch)
tree202df9cf59c34edef18baf991ec02459a6318a89 /sc/source/filter/ftools
parent58a32075ca4f457f570af75aef368dd6c389aca7 (diff)
Remove unnecessary ScUnoHelpFunctions::SetBoolInAny
Change-Id: I4814618758bbb2fe1ed3fbf279b0bbbb370d5cef
Diffstat (limited to 'sc/source/filter/ftools')
-rw-r--r--sc/source/filter/ftools/fapihelper.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/filter/ftools/fapihelper.cxx b/sc/source/filter/ftools/fapihelper.cxx
index 066d7839a431..46163fa73bd5 100644
--- a/sc/source/filter/ftools/fapihelper.cxx
+++ b/sc/source/filter/ftools/fapihelper.cxx
@@ -350,7 +350,7 @@ void ScfPropSetHelper::WriteValue( const Any& rAny )
void ScfPropSetHelper::WriteValue( const bool& rbValue )
{
if( Any* pAny = GetNextAny() )
- ScUnoHelpFunctions::SetBoolInAny( *pAny, rbValue );
+ *pAny <<= rbValue;
}
void ScfPropSetHelper::WriteToPropertySet( ScfPropertySet& rPropSet ) const