summaryrefslogtreecommitdiffstats
path: root/lotuswordpro/source/filter/lwptblformula.hxx
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2015-06-11 11:25:08 +0100
committerCaolán McNamara <caolanm@redhat.com>2015-06-11 14:56:14 +0100
commit8a3120ced522357f53c97b051d0af6437c7a0316 (patch)
tree8b3d19f6a686d1767adb469a123b371ee8950d4a /lotuswordpro/source/filter/lwptblformula.hxx
parentSwDocShell: re-store embedded data source def only when location changes (diff)
downloadcore-8a3120ced522357f53c97b051d0af6437c7a0316.tar.gz
core-8a3120ced522357f53c97b051d0af6437c7a0316.zip
cppcheck: noExplicitConstructor
Change-Id: Id6291335945a8f10cef3afd1a2b3bae65fdf4562
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;
};