summaryrefslogtreecommitdiff
path: root/svl/source/items/rectitem.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'svl/source/items/rectitem.cxx')
-rw-r--r--svl/source/items/rectitem.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/svl/source/items/rectitem.cxx b/svl/source/items/rectitem.cxx
index 9f50f0681b52..c4d1f7c396f7 100644
--- a/svl/source/items/rectitem.cxx
+++ b/svl/source/items/rectitem.cxx
@@ -36,7 +36,7 @@ SfxRectangleItem::SfxRectangleItem()
}
-SfxRectangleItem::SfxRectangleItem( sal_uInt16 nW, const Rectangle& rVal ) :
+SfxRectangleItem::SfxRectangleItem( sal_uInt16 nW, const tools::Rectangle& rVal ) :
SfxPoolItem( nW ),
aVal( rVal )
{
@@ -82,7 +82,7 @@ SfxPoolItem* SfxRectangleItem::Clone(SfxItemPool *) const
SfxPoolItem* SfxRectangleItem::Create(SvStream &rStream, sal_uInt16 ) const
{
- Rectangle aStr;
+ tools::Rectangle aStr;
ReadRectangle( rStream, aStr );
return new SfxRectangleItem(Which(), aStr);
}