summaryrefslogtreecommitdiff
path: root/svx/source/items/grfitem.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'svx/source/items/grfitem.cxx')
-rw-r--r--svx/source/items/grfitem.cxx9
1 files changed, 5 insertions, 4 deletions
diff --git a/svx/source/items/grfitem.cxx b/svx/source/items/grfitem.cxx
index 30c0977a034d..fcc06e2b39be 100644
--- a/svx/source/items/grfitem.cxx
+++ b/svx/source/items/grfitem.cxx
@@ -25,14 +25,15 @@
using namespace ::com::sun::star;
-SvxGrfCrop::SvxGrfCrop( TypedWhichId<SvxGrfCrop> nItemId )
- : SfxPoolItem( nItemId ),
+SvxGrfCrop::SvxGrfCrop( TypedWhichId<SvxGrfCrop> nItemId, SfxItemType eType )
+ : SfxPoolItem( nItemId, eType ),
nLeft( 0 ), nRight( 0 ), nTop( 0 ), nBottom( 0 )
{}
SvxGrfCrop::SvxGrfCrop( sal_Int32 nL, sal_Int32 nR,
- sal_Int32 nT, sal_Int32 nB, TypedWhichId<SvxGrfCrop> nItemId )
- : SfxPoolItem( nItemId ),
+ sal_Int32 nT, sal_Int32 nB, TypedWhichId<SvxGrfCrop> nItemId,
+ SfxItemType eItemType )
+ : SfxPoolItem( nItemId, eItemType ),
nLeft( nL ), nRight( nR ), nTop( nT ), nBottom( nB )
{}