[Libreoffice-commits] core.git: basic/source
Noel Grandin
noel.grandin at collabora.co.uk
Fri Feb 17 08:17:04 UTC 2017
basic/source/sbx/sbxdec.cxx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit fa1ac3381d2c9faf7af562de85a379196a5704de
Author: Noel Grandin <noel.grandin at collabora.co.uk>
Date: Fri Feb 17 10:16:11 2017 +0200
fix windows build
after commit dc21a49ea3a5a655e6bf70860b1b99c20e5b7473
"convert SbxDecimal::CmpResult to scoped enum"
Change-Id: I874976a30a57589cabd37f659a48a81933d867a7
diff --git a/basic/source/sbx/sbxdec.cxx b/basic/source/sbx/sbxdec.cxx
index 690b84b..70b44cb 100644
--- a/basic/source/sbx/sbxdec.cxx
+++ b/basic/source/sbx/sbxdec.cxx
@@ -129,7 +129,7 @@ bool SbxDecimal::isZero()
{
SbxDecimal aZeroDec;
aZeroDec.setLong( 0 );
- bool bZero = ( EQ == compare( *this, aZeroDec ) );
+ bool bZero = CmpResult::EQ == compare( *this, aZeroDec );
return bZero;
}
More information about the Libreoffice-commits
mailing list