[Libreoffice-commits] .: registry/inc sw/inc
Michael Meeks
michael at kemper.freedesktop.org
Thu Dec 15 10:48:29 PST 2011
registry/inc/registry/registry.hxx | 2 +-
sw/inc/modcfg.hxx | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
New commits:
commit 5032e7b0cb95879716e34115cfa5ad040288729d
Author: Gustavo Buzzatti Pacheco <gbpacheco at gmail.com>
Date: Thu Dec 15 11:44:28 2011 -0200
Additional fix for EasyHack FDO43058, remove extra semicolons
diff --git a/registry/inc/registry/registry.hxx b/registry/inc/registry/registry.hxx
index 0ae9136..37f8aa4 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 e45a3e3..14a3b2a 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;}
More information about the Libreoffice-commits
mailing list