Kaydet (Commit) 0361eb7c authored tarafından Noel Grandin's avatar Noel Grandin

remove unused return type from SfxItemPool::AddRef

Change-Id: Ideb690df8a74efe55bff832e16e66a6b77b1530a
üst b0a13b78
......@@ -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
......
......@@ -170,7 +170,7 @@ private:
inline void SetRefCount( sal_uLong n );
inline void SetKind( sal_uInt16 n );
public:
inline sal_uLong AddRef( sal_uLong n = 1 ) const;
inline void AddRef( sal_uLong n = 1 ) const;
private:
inline sal_uLong ReleaseRef( sal_uLong n = 1 ) const;
......@@ -270,11 +270,11 @@ inline void SfxPoolItem::SetKind( sal_uInt16 n )
m_nKind = n;
}
inline sal_uLong SfxPoolItem::AddRef( sal_uLong n ) const
inline void SfxPoolItem::AddRef( sal_uLong n ) const
{
DBG_ASSERT(m_nRefCount <= SFX_ITEMS_MAXREF, "AddRef with non-Pool-Item");
DBG_ASSERT(ULONG_MAX - m_nRefCount > n, "AddRef: refcount overflow");
return (const_cast<SfxPoolItem *>(this)->m_nRefCount += n);
const_cast<SfxPoolItem *>(this)->m_nRefCount += n;
}
inline sal_uLong SfxPoolItem::ReleaseRef( sal_uLong n ) const
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment