diff options
author | Noel Grandin <noel@peralex.com> | 2014-07-21 12:18:47 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-07-23 13:26:17 +0200 |
commit | 0361eb7c20db4eba051ad5593c63b69f3565e488 (patch) | |
tree | 6b91a10c1b6d24d127d5d6569a15a8c395856bf3 /include/svl/itempool.hxx | |
parent | b0a13b78e7b381cfc9d06a4a351d5d345e15e557 (diff) |
remove unused return type from SfxItemPool::AddRef
Change-Id: Ideb690df8a74efe55bff832e16e66a6b77b1530a
Diffstat (limited to 'include/svl/itempool.hxx')
-rw-r--r-- | include/svl/itempool.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/svl/itempool.hxx b/include/svl/itempool.hxx index 77e43a5d9161..edff1915954a 100644 --- a/include/svl/itempool.hxx +++ b/include/svl/itempool.hxx @@ -87,7 +87,7 @@ public: protected: static inline void SetRefCount( SfxPoolItem& rItem, sal_uLong n ); - static inline sal_uLong AddRef( const SfxPoolItem& rItem, sal_uLong n = 1 ); + static inline void AddRef( const SfxPoolItem& rItem, sal_uLong n = 1 ); static inline sal_uLong ReleaseRef( const SfxPoolItem& rItem, sal_uLong n = 1); static inline void SetKind( SfxPoolItem& rItem, sal_uInt16 nRef ); @@ -228,9 +228,9 @@ inline void SfxItemPool::SetRefCount( SfxPoolItem& rItem, sal_uLong n ) } // only the pool may manipulate the reference counts -inline sal_uLong SfxItemPool::AddRef( const SfxPoolItem& rItem, sal_uLong n ) +inline void SfxItemPool::AddRef( const SfxPoolItem& rItem, sal_uLong n ) { - return rItem.AddRef(n); + rItem.AddRef(n); } // only the pool may manipulate the reference counts |