summaryrefslogtreecommitdiff
path: root/oox/source/drawingml/customshapegeometry.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-04-01 13:41:19 +0200
committerNoel Grandin <noel@peralex.com>2014-04-03 09:17:50 +0200
commit8ee4af289f079c1314cdc4f3c370f04f4275f902 (patch)
treef2c147d45b711f218964e2b61aa8a2c6eeed3e81 /oox/source/drawingml/customshapegeometry.cxx
parent6f7ca495912573f9c366c96635c3fa11c647c97b (diff)
oox: sal_Bool->bool
Change-Id: If611cf344d82640b284c159e2e6394074b30e2db
Diffstat (limited to 'oox/source/drawingml/customshapegeometry.cxx')
-rw-r--r--oox/source/drawingml/customshapegeometry.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/oox/source/drawingml/customshapegeometry.cxx b/oox/source/drawingml/customshapegeometry.cxx
index dbbe6e7a129c..ce730d5468f9 100644
--- a/oox/source/drawingml/customshapegeometry.cxx
+++ b/oox/source/drawingml/customshapegeometry.cxx
@@ -785,13 +785,13 @@ ContextHandlerRef AdjustHandleListContext::onCreateContext( sal_Int32 aElementTo
{
if ( aElementToken == A_TOKEN( ahXY ) ) // CT_XYAdjustHandle
{
- AdjustHandle aAdjustHandle( sal_False );
+ AdjustHandle aAdjustHandle( false );
mrAdjustHandleList.push_back( aAdjustHandle );
return new XYAdjustHandleContext( *this, rAttribs, mrCustomShapeProperties, mrAdjustHandleList.back() );
}
else if ( aElementToken == A_TOKEN( ahPolar ) ) // CT_PolarAdjustHandle
{
- AdjustHandle aAdjustHandle( sal_True );
+ AdjustHandle aAdjustHandle( true );
mrAdjustHandleList.push_back( aAdjustHandle );
return new PolarAdjustHandleContext( *this, rAttribs, mrCustomShapeProperties, mrAdjustHandleList.back() );
}