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.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/svl/source/items/rectitem.cxx b/svl/source/items/rectitem.cxx
index 48ab896aba6a..ffc1d8ad4800 100644
--- a/svl/source/items/rectitem.cxx
+++ b/svl/source/items/rectitem.cxx
@@ -103,7 +103,7 @@ SvStream& SfxRectangleItem::Store(SvStream &rStream, sal_uInt16 ) const
-bool SfxRectangleItem::QueryValue( com::sun::star::uno::Any& rVal,
+bool SfxRectangleItem::QueryValue( css::uno::Any& rVal,
sal_uInt8 nMemberId) const
{
nMemberId &= ~CONVERT_TWIPS;
@@ -111,7 +111,7 @@ bool SfxRectangleItem::QueryValue( com::sun::star::uno::Any& rVal,
{
case 0:
{
- rVal <<= com::sun::star::awt::Rectangle( aVal.getX(),
+ rVal <<= css::awt::Rectangle( aVal.getX(),
aVal.getY(),
aVal.getWidth(),
aVal.getHeight() );
@@ -128,12 +128,12 @@ bool SfxRectangleItem::QueryValue( com::sun::star::uno::Any& rVal,
}
-bool SfxRectangleItem::PutValue( const com::sun::star::uno::Any& rVal,
+bool SfxRectangleItem::PutValue( const css::uno::Any& rVal,
sal_uInt8 nMemberId )
{
bool bRet = false;
nMemberId &= ~CONVERT_TWIPS;
- com::sun::star::awt::Rectangle aValue;
+ css::awt::Rectangle aValue;
sal_Int32 nVal = 0;
if ( !nMemberId )
bRet = (rVal >>= aValue);