diff options
author | Takeshi Abe <tabe@fixedpoint.jp> | 2017-10-04 18:16:19 +0900 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-10-04 14:33:10 +0200 |
commit | 96e67461c8b451f3a313bcc973ac49c5e49537c0 (patch) | |
tree | 727a810740f1469415cea752fc65c4212d80ccb4 /include | |
parent | 863dc26196a200de1540bf2e7a4809c8882795ed (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')
-rw-r--r-- | include/svl/slstitm.hxx | 5 |
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(); |