summaryrefslogtreecommitdiff
path: root/svl
diff options
context:
space:
mode:
authorJochen Nitschke <j.nitschke+logerrit@ok.de>2016-09-05 23:26:42 +0200
committerNoel Grandin <noelgrandin@gmail.com>2016-09-06 12:32:01 +0000
commit77bb65881a7dff2f3935df6dae7f3b1e0b756e12 (patch)
tree2d92c0f7ac11a5b522830cb64048aea3e49fc528 /svl
parent0f2d5db38bac64b665c6e4a127bbbd63a7ed9af5 (diff)
remove outdated comment, getter not needed
DBG_CHKTHIS call was removed from Which() in commit d205ff49be10159d1766c2d06182c02255497def Change-Id: I4d5b806f0b0733ae3dc84c672ad9d6915d211f68 Reviewed-on: https://gerrit.libreoffice.org/28682 Reviewed-by: Noel Grandin <noelgrandin@gmail.com> Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'svl')
-rw-r--r--svl/source/items/poolitem.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/svl/source/items/poolitem.cxx b/svl/source/items/poolitem.cxx
index 89ac95263969..81264d940b52 100644
--- a/svl/source/items/poolitem.cxx
+++ b/svl/source/items/poolitem.cxx
@@ -74,7 +74,7 @@ SfxPoolItem::SfxPoolItem(sal_uInt16 const nWhich)
SfxPoolItem::SfxPoolItem( const SfxPoolItem& rCpy )
: m_nRefCount(0) // don't copy that
- , m_nWhich(rCpy.Which()) // call function because of ChkThis() (WTF does that mean?)
+ , m_nWhich(rCpy.m_nWhich)
, m_nKind( SFX_ITEMS_NONE )
{
#if OSL_DEBUG_LEVEL > 0