diff options
Diffstat (limited to 'svx/source/items/ofaitem.cxx')
-rw-r--r-- | svx/source/items/ofaitem.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/svx/source/items/ofaitem.cxx b/svx/source/items/ofaitem.cxx index e996373eb48e..75fc574be3b7 100644 --- a/svx/source/items/ofaitem.cxx +++ b/svx/source/items/ofaitem.cxx @@ -30,7 +30,7 @@ #include "svx/ofaitem.hxx" -OfaPtrItem::OfaPtrItem( USHORT _nWhich, void *_pPtr ) +OfaPtrItem::OfaPtrItem( sal_uInt16 _nWhich, void *_pPtr ) : SfxPoolItem( _nWhich ), pPtr( _pPtr ) { @@ -54,7 +54,7 @@ SfxPoolItem* OfaPtrItem::Clone( SfxItemPool * ) const /* TYPEINIT1_FACTORY(DashListPtrItem, SvxDashListPtrItem, new DashListPtrItem(0)); -DashListPtrItem::DashListPtrItem( USHORT nWhich, SvxDashListItem* pPtr ) +DashListPtrItem::DashListPtrItem( sal_uInt16 nWhich, SvxDashListItem* pPtr ) : OfaPtrItem( nWhich ), pPtr( pPtr ) { } @@ -74,11 +74,11 @@ SfxPoolItem* DashListPtrItem::Clone( SfxItemPool *pPool ) const return new DashListPtrItem( *this ); } -sal_Bool DashListPtrItem::QueryValue( com::sun::star::uno::Any& rVal, BYTE nMemberId = 0 ) const +sal_Bool DashListPtrItem::QueryValue( com::sun::star::uno::Any& rVal, sal_uInt8 nMemberId = 0 ) const { } -sal_Bool DashListPtrItem::PutValue( const com::sun::star::uno::Any& rVal, BYTE nMemberId = 0 ) +sal_Bool DashListPtrItem::PutValue( const com::sun::star::uno::Any& rVal, sal_uInt8 nMemberId = 0 ) { sal_Int64 nHyper; if ( rVal >>= nHyper ) |