summaryrefslogtreecommitdiff
path: root/sw/inc/cellfml.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'sw/inc/cellfml.hxx')
-rw-r--r--sw/inc/cellfml.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sw/inc/cellfml.hxx b/sw/inc/cellfml.hxx
index df656c13641b..9e6523ca4919 100644
--- a/sw/inc/cellfml.hxx
+++ b/sw/inc/cellfml.hxx
@@ -44,9 +44,9 @@ public:
SwTblCalcPara( SwCalc& rCalculator, const SwTable& rTable );
~SwTblCalcPara();
- sal_Bool CalcWithStackOverflow();
- sal_Bool IsStackOverflow() const { return nMaxSize == nStackCnt; }
- sal_Bool IncStackCnt() { return nMaxSize == ++nStackCnt; }
+ bool CalcWithStackOverflow();
+ bool IsStackOverflow() const { return nMaxSize == nStackCnt; }
+ bool IncStackCnt() { return nMaxSize == ++nStackCnt; }
void DecStackCnt() { if( nStackCnt ) --nStackCnt; }
void SetLastTblBox( const SwTableBox* pBox ) { pLastTblBox = pBox; }
};