summaryrefslogtreecommitdiff
path: root/lotuswordpro/source/filter/lwptblformula.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'lotuswordpro/source/filter/lwptblformula.hxx')
-rw-r--r--lotuswordpro/source/filter/lwptblformula.hxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/lotuswordpro/source/filter/lwptblformula.hxx b/lotuswordpro/source/filter/lwptblformula.hxx
index 8ead65c39e3f..e405958e149b 100644
--- a/lotuswordpro/source/filter/lwptblformula.hxx
+++ b/lotuswordpro/source/filter/lwptblformula.hxx
@@ -122,7 +122,7 @@ public:
class LwpFormulaConst:public LwpFormulaArg
{
public:
- LwpFormulaConst( double dVal);
+ explicit LwpFormulaConst( double dVal);
virtual OUString ToString(LwpTableLayout* pCellsMap) SAL_OVERRIDE;
private:
double m_dVal;
@@ -131,7 +131,7 @@ private:
class LwpFormulaText:public LwpFormulaArg
{
public:
- LwpFormulaText( const OUString& aText);
+ explicit LwpFormulaText( const OUString& aText);
virtual OUString ToString(LwpTableLayout* /*pCellsMap*/) SAL_OVERRIDE {return m_aText;}
private:
OUString m_aText;
@@ -167,7 +167,7 @@ private:
class LwpFormulaFunc :public LwpFormulaArg
{
public:
- LwpFormulaFunc(sal_uInt16 nTokenType);
+ explicit LwpFormulaFunc(sal_uInt16 nTokenType);
virtual ~LwpFormulaFunc();
void AddArg(LwpFormulaArg* pArg);
@@ -183,14 +183,14 @@ protected:
class LwpFormulaOp : public LwpFormulaFunc
{
public:
- LwpFormulaOp(sal_uInt16 nTokenType):LwpFormulaFunc(nTokenType){;}
+ explicit LwpFormulaOp(sal_uInt16 nTokenType):LwpFormulaFunc(nTokenType){;}
virtual OUString ToString(LwpTableLayout* pCellsMap) SAL_OVERRIDE;
};
class LwpFormulaUnaryOp : public LwpFormulaFunc
{
public:
- LwpFormulaUnaryOp(sal_uInt16 nTokenType):LwpFormulaFunc(nTokenType){;}
+ explicit LwpFormulaUnaryOp(sal_uInt16 nTokenType):LwpFormulaFunc(nTokenType){;}
virtual OUString ToString(LwpTableLayout* pCellsMap) SAL_OVERRIDE;
};