summaryrefslogtreecommitdiffstats
path: root/lotuswordpro/source/filter/lwptblformula.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-04-22 14:14:14 +0200
committerNoel Grandin <noel@peralex.com>2014-04-23 11:11:50 +0200
commit2692047aacef7b4288f995ce6ff2db5e16b71014 (patch)
tree2d43552ad1a01cfb6287d54f35b5ae3ca538393b /lotuswordpro/source/filter/lwptblformula.hxx
parentlingucomponent: sal_Bool->bool (diff)
downloadcore-2692047aacef7b4288f995ce6ff2db5e16b71014.tar.gz
core-2692047aacef7b4288f995ce6ff2db5e16b71014.zip
lotuswordpro: sal_Bool->bool
Change-Id: I017d284a2fbc8d50a9928c9d934ffe710b0c652f
Diffstat (limited to 'lotuswordpro/source/filter/lwptblformula.hxx')
-rw-r--r--lotuswordpro/source/filter/lwptblformula.hxx16
1 files changed, 8 insertions, 8 deletions
diff --git a/lotuswordpro/source/filter/lwptblformula.hxx b/lotuswordpro/source/filter/lwptblformula.hxx
index cc467a6cc045..de39862915ef 100644
--- a/lotuswordpro/source/filter/lwptblformula.hxx
+++ b/lotuswordpro/source/filter/lwptblformula.hxx
@@ -201,21 +201,21 @@ class LwpFormulaInfo : public LwpCellList
public:
LwpFormulaInfo(LwpObjectHeader &objHdr, LwpSvStream* pStrm);
virtual ~LwpFormulaInfo();
- sal_Bool IsFormula() SAL_OVERRIDE {return sal_True;}
+ bool IsFormula() SAL_OVERRIDE {return true;}
void SetRow(sal_uInt16 nRow){ m_nFormulaRow = nRow;}
OUString Convert(LwpTableLayout* pCellsMap);
void Convert(XFCell * pCell, LwpTableLayout* pCellsMap) SAL_OVERRIDE;
protected:
void Read() SAL_OVERRIDE;
- sal_Bool ReadCellID();
- sal_Bool ReadText();
- sal_Bool ReadCellRange();
- sal_Bool ReadExpression();
- sal_Bool ReadArguments(LwpFormulaFunc& aFunc);
- sal_Bool m_bSupported;
+ bool ReadCellID();
+ bool ReadText();
+ bool ReadCellRange();
+ bool ReadExpression();
+ bool ReadArguments(LwpFormulaFunc& aFunc);
+ bool m_bSupported;
private:
vector<LwpFormulaArg*> m_aStack;
- sal_Bool ReadConst();
+ bool ReadConst();
void MarkUnsupported(sal_uInt16 TokenType);
sal_uInt16 m_nFormulaRow;