summaryrefslogtreecommitdiff
path: root/oox/source/drawingml/shapepropertymap.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'oox/source/drawingml/shapepropertymap.cxx')
-rw-r--r--oox/source/drawingml/shapepropertymap.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/oox/source/drawingml/shapepropertymap.cxx b/oox/source/drawingml/shapepropertymap.cxx
index b018aa41828f..8a5a8e704711 100644
--- a/oox/source/drawingml/shapepropertymap.cxx
+++ b/oox/source/drawingml/shapepropertymap.cxx
@@ -179,9 +179,9 @@ bool ShapePropertyMap::setFillHatch( sal_Int32 nPropId, const Any& rValue )
return setAnyProperty( nPropId, rValue );
// create named hatch and push its name
- if( rValue.has< Hatch >() )
+ if (rValue.has<drawing::Hatch>())
{
- OUString aHatchName = mrModelObjHelper.insertFillHatch( rValue.get< Hatch >() );
+ OUString aHatchName = mrModelObjHelper.insertFillHatch(rValue.get<drawing::Hatch>());
return !aHatchName.isEmpty() && setProperty( nPropId, aHatchName );
}