diff options
author | Gustavo Buzzatti Pacheco <gbpacheco@gmail.com> | 2011-12-15 11:44:28 -0200 |
---|---|---|
committer | Michael Meeks <michael.meeks@suse.com> | 2011-12-15 18:48:41 +0000 |
commit | 5032e7b0cb95879716e34115cfa5ad040288729d (patch) | |
tree | af58e310590f4660ba25b326c267ac7a15e391cc /sw/inc | |
parent | 227350eb5a9881f795e9ae499c732f0148e4ac38 (diff) |
Additional fix for EasyHack FDO43058, remove extra semicolons
Diffstat (limited to 'sw/inc')
-rw-r--r-- | sw/inc/modcfg.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/inc/modcfg.hxx b/sw/inc/modcfg.hxx index e45a3e39657f..14a3b2ac2f7e 100644 --- a/sw/inc/modcfg.hxx +++ b/sw/inc/modcfg.hxx @@ -247,7 +247,7 @@ public: { return bHTML ? aWebTableConfig.bInsTblAlignNum : aTableConfig.bInsTblAlignNum; } void SetInsTblAlignNum( sal_Bool bHTML, sal_Bool b ) { bHTML ? (aWebTableConfig.bInsTblAlignNum = b) : (aTableConfig.bInsTblAlignNum = b); - bHTML ? aWebTableConfig.SetModified() : aTableConfig.SetModified();;} + bHTML ? aWebTableConfig.SetModified() : aTableConfig.SetModified();} SwInsertTableOptions GetInsTblFlags(sal_Bool bHTML) const { return bHTML ? aWebInsertConfig.aInsTblOpts : aInsertConfig.aInsTblOpts;} |