Added dumping of MirroredX & MirroredY properties

Change-Id: Ic580cf7c7c7d75c8f1fa0fbba13f53318b285932
This commit is contained in:
Artur Dorda 2012-07-04 14:16:15 +02:00 committed by Markus Mohrhard
parent e6238a9cd7
commit a7cb63e3e7

View file

@ -638,5 +638,16 @@ void EnhancedShapeDumper::dumpHandlesAsElement(uno::Sequence< beans::PropertyVal
void EnhancedShapeDumper::dumpEnhancedCustomShapeHandleService(uno::Reference< beans::XPropertySet > xPropSet)
{
{
uno::Any anotherAny = xPropSet->getPropertyValue("MirroredX");
sal_Bool bMirroredX;
if(anotherAny >>= bMirroredX)
dumpMirroredXAsAttribute(bMirroredX);
}
{
uno::Any anotherAny = xPropSet->getPropertyValue("MirroredY");
sal_Bool bMirroredY;
if(anotherAny >>= bMirroredY)
dumpMirroredYAsAttribute(bMirroredY);
}
}