summaryrefslogtreecommitdiff
path: root/lotuswordpro
diff options
context:
space:
mode:
authorDavid Tardon <dtardon@redhat.com>2016-11-13 19:08:22 +0100
committerDavid Tardon <dtardon@redhat.com>2016-11-13 19:08:22 +0100
commit27a165cfc97f004ecf5d911a3adc3b5ced36f7fd (patch)
tree6244eb05a99e167a141b72c2cfa25efd7609f504 /lotuswordpro
parenta21d24ca72b792c9fdd74894ebf773c72fc2b704 (diff)
drop useless semicolons
Change-Id: I039f8ff491b42ea9c3936bf13922df8095434228
Diffstat (limited to 'lotuswordpro')
-rw-r--r--lotuswordpro/source/filter/lwptblformula.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/lotuswordpro/source/filter/lwptblformula.hxx b/lotuswordpro/source/filter/lwptblformula.hxx
index 0f9873e8a92d..ab0bbdcf323c 100644
--- a/lotuswordpro/source/filter/lwptblformula.hxx
+++ b/lotuswordpro/source/filter/lwptblformula.hxx
@@ -180,14 +180,14 @@ protected:
class LwpFormulaOp : public LwpFormulaFunc
{
public:
- explicit LwpFormulaOp(sal_uInt16 nTokenType):LwpFormulaFunc(nTokenType){;}
+ explicit LwpFormulaOp(sal_uInt16 nTokenType):LwpFormulaFunc(nTokenType){}
virtual OUString ToString(LwpTableLayout* pCellsMap) override;
};
class LwpFormulaUnaryOp : public LwpFormulaFunc
{
public:
- explicit LwpFormulaUnaryOp(sal_uInt16 nTokenType):LwpFormulaFunc(nTokenType){;}
+ explicit LwpFormulaUnaryOp(sal_uInt16 nTokenType):LwpFormulaFunc(nTokenType){}
virtual OUString ToString(LwpTableLayout* pCellsMap) override;
};