summaryrefslogtreecommitdiff
path: root/svl
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2016-06-06 13:19:04 +0200
committerNoel Grandin <noel@peralex.com>2016-06-06 13:20:58 +0200
commit3fff330558232ea8df6558117b60b781f98e9ff5 (patch)
treeff214c353568fc378a7725f9df867efa3c237be3 /svl
parent02858c3d4900fba4d7fa596b221eb426b35ca3e9 (diff)
fix crash
introduced by commit 4d666f5092d7c4f2ece9702dda4d874e44cdc6f7 "tdf#89329: use shared_ptr for pImpl in slstitm" Change-Id: I69da5a716f1e6c9f56e0be5a97182be9dd329abc
Diffstat (limited to 'svl')
-rw-r--r--svl/source/items/slstitm.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/svl/source/items/slstitm.cxx b/svl/source/items/slstitm.cxx
index 2419a1a25c54..e66c4ae18c28 100644
--- a/svl/source/items/slstitm.cxx
+++ b/svl/source/items/slstitm.cxx
@@ -81,7 +81,7 @@ SfxStringListItem::SfxStringListItem( sal_uInt16 which, SvStream& rStream ) :
SfxStringListItem::SfxStringListItem( const SfxStringListItem& rItem ) :
SfxPoolItem( rItem ),
- pImpl(rItem.pImpl.get())
+ pImpl(rItem.pImpl)
{
}