summaryrefslogtreecommitdiff
path: root/sc/inc/subtotal.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'sc/inc/subtotal.hxx')
-rw-r--r--sc/inc/subtotal.hxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/sc/inc/subtotal.hxx b/sc/inc/subtotal.hxx
index 9ff089270fde..e3823c55c81e 100644
--- a/sc/inc/subtotal.hxx
+++ b/sc/inc/subtotal.hxx
@@ -35,9 +35,9 @@ class SubTotal
{
public:
- static BOOL SafePlus( double& fVal1, double fVal2);
- static BOOL SafeMult( double& fVal1, double fVal2);
- static BOOL SafeDiv( double& fVal1, double fVal2);
+ static sal_Bool SafePlus( double& fVal1, double fVal2);
+ static sal_Bool SafeMult( double& fVal1, double fVal2);
+ static sal_Bool SafeDiv( double& fVal1, double fVal2);
};
@@ -46,10 +46,10 @@ struct ScFunctionData // zum Berechnen von einzelnen Funktione
ScSubTotalFunc eFunc;
double nVal;
long nCount;
- BOOL bError;
+ sal_Bool bError;
ScFunctionData( ScSubTotalFunc eFn ) :
- eFunc(eFn), nVal(0.0), nCount(0), bError(FALSE) {}
+ eFunc(eFn), nVal(0.0), nCount(0), bError(false) {}
};