diff options
author | Noel Grandin <noel@peralex.com> | 2014-02-28 12:58:20 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-03-03 08:59:36 +0200 |
commit | 241f1a1ab47f56305725b2f33c23bac3ea919d79 (patch) | |
tree | c96a1f0654adef153a39a1eba694aabbbb6fe15f | |
parent | 0786a72308f7c3a47e052b00616f28ab03bc6b32 (diff) |
editeng: sal_Bool->bool
Change-Id: I0aa375d35c796cfa1929f9c0e735eaaa05561ee4
-rw-r--r-- | editeng/source/items/xmlcnitm.cxx | 4 | ||||
-rw-r--r-- | include/editeng/xmlcnitm.hxx | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/editeng/source/items/xmlcnitm.cxx b/editeng/source/items/xmlcnitm.cxx index 01806ce70094..ef299ec36ad0 100644 --- a/editeng/source/items/xmlcnitm.cxx +++ b/editeng/source/items/xmlcnitm.cxx @@ -170,13 +170,13 @@ bool SvXMLAttrContainerItem::PutValue( const com::sun::star::uno::Any& rVal, sal } -sal_Bool SvXMLAttrContainerItem::AddAttr( const OUString& rLName, +bool SvXMLAttrContainerItem::AddAttr( const OUString& rLName, const OUString& rValue ) { return pImpl->AddAttr( rLName, rValue ); } -sal_Bool SvXMLAttrContainerItem::AddAttr( const OUString& rPrefix, +bool SvXMLAttrContainerItem::AddAttr( const OUString& rPrefix, const OUString& rNamespace, const OUString& rLName, const OUString& rValue ) { diff --git a/include/editeng/xmlcnitm.hxx b/include/editeng/xmlcnitm.hxx index bd2f0e37071d..029bc5e78164 100644 --- a/include/editeng/xmlcnitm.hxx +++ b/include/editeng/xmlcnitm.hxx @@ -59,9 +59,9 @@ public: virtual SfxPoolItem *Clone( SfxItemPool * = 0) const { return new SvXMLAttrContainerItem( *this ); } - sal_Bool AddAttr( const OUString& rLName, + bool AddAttr( const OUString& rLName, const OUString& rValue ); - sal_Bool AddAttr( const OUString& rPrefix, + bool AddAttr( const OUString& rPrefix, const OUString& rNamespace, const OUString& rLName, const OUString& rValue ); |