Added dumping of MirroredX & MirroredY properties
Change-Id: Ic580cf7c7c7d75c8f1fa0fbba13f53318b285932
This commit is contained in:
parent
e6238a9cd7
commit
a7cb63e3e7
1 changed files with 12 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue