summaryrefslogtreecommitdiff
path: root/svl/source/items/ptitem.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'svl/source/items/ptitem.cxx')
-rw-r--r--svl/source/items/ptitem.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/svl/source/items/ptitem.cxx b/svl/source/items/ptitem.cxx
index 361cb4f4fc7d..71ac1205b682 100644
--- a/svl/source/items/ptitem.cxx
+++ b/svl/source/items/ptitem.cxx
@@ -35,12 +35,13 @@ SfxPoolItem* SfxPointItem::CreateDefault() { return new SfxPointItem; }
SfxPointItem::SfxPointItem()
+ : SfxPoolItem(0, SfxItemType::SfxPointItemType)
{
}
SfxPointItem::SfxPointItem( sal_uInt16 nW, const Point& rVal ) :
- SfxPoolItem( nW ),
+ SfxPoolItem( nW, SfxItemType::SfxPointItemType ),
aVal( rVal )
{
}