summaryrefslogtreecommitdiff
path: root/oox/source/drawingml/diagram/diagram.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'oox/source/drawingml/diagram/diagram.cxx')
-rw-r--r--oox/source/drawingml/diagram/diagram.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/oox/source/drawingml/diagram/diagram.cxx b/oox/source/drawingml/diagram/diagram.cxx
index 678299ea3abd..d690cdc40991 100644
--- a/oox/source/drawingml/diagram/diagram.cxx
+++ b/oox/source/drawingml/diagram/diagram.cxx
@@ -692,15 +692,15 @@ void reloadDiagram(SdrObject* pObj, core::XmlFilterBase& rFilter)
// retrieve the doms from the GrabBag
uno::Sequence<beans::PropertyValue> propList;
xPropSet->getPropertyValue(UNO_NAME_MISC_OBJ_INTEROPGRABBAG) >>= propList;
- for (sal_Int32 nProp = 0; nProp < propList.getLength(); ++nProp)
+ for (const auto& rProp : std::as_const(propList))
{
- OUString propName = propList[nProp].Name;
+ OUString propName = rProp.Name;
if (propName == "OOXLayout")
- propList[nProp].Value >>= layoutDom;
+ rProp.Value >>= layoutDom;
else if (propName == "OOXStyle")
- propList[nProp].Value >>= styleDom;
+ rProp.Value >>= styleDom;
else if (propName == "OOXColor")
- propList[nProp].Value >>= colorDom;
+ rProp.Value >>= colorDom;
}
ShapePtr pShape(new Shape());