summaryrefslogtreecommitdiff
path: root/svl/source/items/slstitm.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'svl/source/items/slstitm.cxx')
-rw-r--r--svl/source/items/slstitm.cxx5
1 files changed, 3 insertions, 2 deletions
diff --git a/svl/source/items/slstitm.cxx b/svl/source/items/slstitm.cxx
index 02784446ca52..1141784397b1 100644
--- a/svl/source/items/slstitm.cxx
+++ b/svl/source/items/slstitm.cxx
@@ -29,13 +29,14 @@
SfxPoolItem* SfxStringListItem::CreateDefault() { return new SfxStringListItem; }
-SfxStringListItem::SfxStringListItem()
+SfxStringListItem::SfxStringListItem() :
+ SfxPoolItem( 0, SfxItemType::SfxStringListItemType )
{
}
SfxStringListItem::SfxStringListItem( sal_uInt16 which, const std::vector<OUString>* pList ) :
- SfxPoolItem( which )
+ SfxPoolItem( which, SfxItemType::SfxStringListItemType )
{
// FIXME: Putting an empty list does not work
// Therefore the query after the count is commented out