summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKohei Yoshida <kohei.yoshida@suse.com>2011-09-02 02:06:20 -0400
committerKohei Yoshida <kohei.yoshida@suse.com>2011-09-02 02:06:20 -0400
commitca5a4839a6a757f79e64455785979658b40074b7 (patch)
tree8cc400c393486c306195016672180b4931ab0104
parentd178d7bef193565a7d6aacbc37a58dfc4bd7b316 (diff)
css::awt namespace is included in this file.
-rw-r--r--oox/source/xls/drawingfragment.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/oox/source/xls/drawingfragment.cxx b/oox/source/xls/drawingfragment.cxx
index 7a95fe4b2ada..64f0164e49b1 100644
--- a/oox/source/xls/drawingfragment.cxx
+++ b/oox/source/xls/drawingfragment.cxx
@@ -285,8 +285,8 @@ void DrawingFragment::onEndElement()
getLimitedValue< sal_Int32, sal_Int64 >( aShapeRectEmu.Height, 0, SAL_MAX_INT32 ) );
// Make sure to set the position and size *before* calling addShape().
- mxShape->setPosition(::com::sun::star::awt::Point(aShapeRectEmu.X, aShapeRectEmu.Y));
- mxShape->setSize(::com::sun::star::awt::Size(aShapeRectEmu.Width, aShapeRectEmu.Height));
+ mxShape->setPosition(Point(aShapeRectEmu.X, aShapeRectEmu.Y));
+ mxShape->setSize(Size(aShapeRectEmu.Width, aShapeRectEmu.Height));
basegfx::B2DHomMatrix aTransformation;
mxShape->addShape( getOoxFilter(), &getTheme(), mxDrawPage, aTransformation, &aShapeRectEmu32 );