summaryrefslogtreecommitdiff
path: root/sc/source/ui/vba/vbawsfunction.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sc/source/ui/vba/vbawsfunction.cxx')
-rw-r--r--sc/source/ui/vba/vbawsfunction.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/source/ui/vba/vbawsfunction.cxx b/sc/source/ui/vba/vbawsfunction.cxx
index 5e319fe7173b..ca7cf6dadc08 100644
--- a/sc/source/ui/vba/vbawsfunction.cxx
+++ b/sc/source/ui/vba/vbawsfunction.cxx
@@ -58,9 +58,9 @@ void lclConvertBooleanToDouble( uno::Any& rAny )
if ( rAny >>= bValue )
{
if ( bValue )
- rAny <<= double( 1.0 );
+ rAny <<= 1.0;
else
- rAny <<= double( 0.0 );
+ rAny <<= 0.0;
}
}