summaryrefslogtreecommitdiff
path: root/oox
diff options
context:
space:
mode:
authorMuthu Subramanian <sumuthu@collabora.com>2014-03-06 21:38:44 +0530
committerMuthu Subramanian <sumuthu@collabora.com>2014-03-06 21:38:44 +0530
commit72a029dd2e6aad242ed53c56b891aa593e2db33f (patch)
treec69ebd08451c5a79ed2ead914e605e9686e0af6a /oox
parentf1d1c9a6529d575ba3f65872e5ae9e7ac381c6b7 (diff)
Replace [] with getProperty()
Diffstat (limited to 'oox')
-rw-r--r--oox/source/drawingml/shape.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/oox/source/drawingml/shape.cxx b/oox/source/drawingml/shape.cxx
index 7d3b0dc980c3..3487b310f2de 100644
--- a/oox/source/drawingml/shape.cxx
+++ b/oox/source/drawingml/shape.cxx
@@ -694,7 +694,7 @@ Reference< XShape > Shape::createAndInsert(
}
if (aShapeProps.hasProperty(PROP_FillBitmapName))
{
- uno::Any aAny = aShapeProps[PROP_FillBitmapName];
+ uno::Any aAny = aShapeProps.getProperty(PROP_FillBitmapName);
aShapeProps.setProperty(PROP_BackGraphicURL, rFilterBase.getModelObjectHelper().getFillBitmapUrl( aAny.get<OUString>() ));
// aShapeProps.erase(PROP_FillBitmapName); // Maybe, leave the name as well
}