sal_Bool -> bool
Change-Id: I92fe7e3d3be4bf64b57dacb2ae8386775b02c80a
This commit is contained in:
@@ -146,10 +146,10 @@ void CustomShapeProperties::pushToPropSet( const ::oox::core::FilterBase& /* rFi
|
|||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
aPropertyMap.setProperty( PROP_MirroredX, (sal_Bool) mbMirroredX );
|
aPropertyMap.setProperty( PROP_MirroredX, mbMirroredX );
|
||||||
aPropertyMap.setProperty( PROP_MirroredY, (sal_Bool) mbMirroredY );
|
aPropertyMap.setProperty( PROP_MirroredY, mbMirroredY );
|
||||||
aPropertyMap.setProperty( PROP_TextPreRotateAngle, mnTextRotateAngle );
|
aPropertyMap.setProperty( PROP_TextPreRotateAngle, mnTextRotateAngle );
|
||||||
aPropertyMap.setProperty( PROP_IsPostRotateAngle, (sal_Bool)true); // For OpenXML Imports
|
aPropertyMap.setProperty( PROP_IsPostRotateAngle, true); // For OpenXML Imports
|
||||||
Sequence< PropertyValue > aSeq = aPropertyMap.makePropertyValueSequence();
|
Sequence< PropertyValue > aSeq = aPropertyMap.makePropertyValueSequence();
|
||||||
aPropSet.setProperty( PROP_CustomShapeGeometry, aSeq );
|
aPropSet.setProperty( PROP_CustomShapeGeometry, aSeq );
|
||||||
|
|
||||||
|
@@ -408,7 +408,7 @@ Reference< XShape > Shape::createAndInsert(
|
|||||||
{
|
{
|
||||||
aServiceName = finalizeServiceName( rFilterBase, rServiceName, aShapeRectHmm );
|
aServiceName = finalizeServiceName( rFilterBase, rServiceName, aShapeRectHmm );
|
||||||
}
|
}
|
||||||
sal_Bool bIsCustomShape = ( aServiceName == "com.sun.star.drawing.CustomShape" ||
|
bool bIsCustomShape = ( aServiceName == "com.sun.star.drawing.CustomShape" ||
|
||||||
aServiceName == "com.sun.star.drawing.ConnectorShape" );
|
aServiceName == "com.sun.star.drawing.ConnectorShape" );
|
||||||
|
|
||||||
basegfx::B2DHomMatrix aTransformation;
|
basegfx::B2DHomMatrix aTransformation;
|
||||||
|
Reference in New Issue
Block a user