summaryrefslogtreecommitdiff
path: root/include/svl
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2017-10-04 18:16:19 +0900
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-10-04 14:33:10 +0200
commit96e67461c8b451f3a313bcc973ac49c5e49537c0 (patch)
tree727a810740f1469415cea752fc65c4212d80ccb4 /include/svl
parent863dc26196a200de1540bf2e7a4809c8882795ed (diff)
svl: Remove unnecessary abstraction of SfxImpStringList
Change-Id: Idbf1bf08f89f0fd1e92ad8f0d93d325267d19416 Reviewed-on: https://gerrit.libreoffice.org/43120 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/svl')
-rw-r--r--include/svl/slstitm.hxx5
1 files changed, 1 insertions, 4 deletions
diff --git a/include/svl/slstitm.hxx b/include/svl/slstitm.hxx
index 22b36293ee85..c22a5bf6bf20 100644
--- a/include/svl/slstitm.hxx
+++ b/include/svl/slstitm.hxx
@@ -26,12 +26,9 @@
#include <com/sun/star/uno/Sequence.h>
#include <memory>
-class SfxImpStringList;
-
class SVL_DLLPUBLIC SfxStringListItem : public SfxPoolItem
{
-protected:
- std::shared_ptr<SfxImpStringList> pImpl;
+ std::shared_ptr<std::vector<OUString>> mpList;
public:
static SfxPoolItem* CreateDefault();