loplugin:fpcomparison in basic/
Change-Id: I76ffac6a0f0b1525c85d1995277d3ca22ef268e1 Reviewed-on: https://gerrit.libreoffice.org/21869 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
This commit is contained in:
committed by
Noel Grandin
parent
5569a65ea4
commit
4fa4b9addf
@@ -1028,7 +1028,7 @@ Any sbxToUnoValueImpl( const SbxValue* pVar, bool bBlockConversionToSmallestType
|
||||
case TypeClass_DOUBLE:
|
||||
{
|
||||
double d = pVar->GetDouble();
|
||||
if( d == floor( d ) )
|
||||
if( rtl::math::approxEqual(d, floor( d )) )
|
||||
{
|
||||
if( d >= -128 && d <= 127 )
|
||||
aType = ::cppu::UnoType<sal_Int8>::get();
|
||||
|
@@ -281,7 +281,7 @@ start:
|
||||
if( n <= -1.0 || n >= 1.0 )
|
||||
{
|
||||
// Time only if != 00:00:00
|
||||
if( floor( n ) == n )
|
||||
if( rtl::math::approxEqual(floor( n ), n) )
|
||||
{
|
||||
switch( eDate )
|
||||
{
|
||||
|
Reference in New Issue
Block a user