summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--registry/inc/registry/registry.hxx2
-rw-r--r--sw/inc/modcfg.hxx2
2 files changed, 2 insertions, 2 deletions
diff --git a/registry/inc/registry/registry.hxx b/registry/inc/registry/registry.hxx
index 0ae9136fcf1d..37f8aa401a7d 100644
--- a/registry/inc/registry/registry.hxx
+++ b/registry/inc/registry/registry.hxx
@@ -843,7 +843,7 @@ inline ::rtl::OUString RegistryKey::getName()
::rtl::OUString sRet;
if (m_registry.isValid())
m_registry.m_pApi->getKeyName(m_hImpl, &sRet.pData);
- return sRet;;
+ return sRet;
}
inline RegError RegistryKey::createKey(const ::rtl::OUString& keyName,
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;}