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 982b235f116a..43aa86a76d30 100644
--- a/svl/source/items/rectitem.cxx
+++ b/svl/source/items/rectitem.cxx
@@ -117,8 +117,8 @@ bool SfxRectangleItem::PutValue( const css::uno::Any& rVal,
aVal.setWidth( aValue.Width );
aVal.setHeight( aValue.Height );
break;
- case MID_RECT_LEFT: aVal.setX( nVal ); break;
- case MID_RECT_RIGHT: aVal.setY( nVal ); break;
+ case MID_RECT_LEFT: aVal.SetPosX( nVal ); break;
+ case MID_RECT_RIGHT: aVal.SetPosY( nVal ); break;
case MID_WIDTH: aVal.setWidth( nVal ); break;
case MID_HEIGHT: aVal.setHeight( nVal ); break;
default: OSL_FAIL("Wrong MemberID!"); return false;