summaryrefslogtreecommitdiff
path: root/oox/source/drawingml/customshapegeometry.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-01-28 20:01:16 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-01-28 20:26:25 +0100
commitad930bddba8002fe592d7242b99867bffed9dbf0 (patch)
tree0850f58cad301de17622c86d53ea6b45041f510a /oox/source/drawingml/customshapegeometry.cxx
parent0f50845dbd751140612b09a1210922eb70af729e (diff)
bool improvements
Change-Id: I171212bbfc2f54a16b5669ab4401a3168e7f0552
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 e3b53130bd8f..32b73a812292 100644
--- a/oox/source/drawingml/customshapegeometry.cxx
+++ b/oox/source/drawingml/customshapegeometry.cxx
@@ -979,8 +979,8 @@ Path2DContext::Path2DContext( ContextHandler2Helper& rParent, const AttributeLis
rPath2D.w = rAttribs.getString( XML_w, aEmptyString ).toInt64();
rPath2D.h = rAttribs.getString( XML_h, aEmptyString ).toInt64();
rPath2D.fill = rAttribs.getToken( XML_fill, XML_norm );
- rPath2D.stroke = rAttribs.getBool( XML_stroke, sal_True );
- rPath2D.extrusionOk = rAttribs.getBool( XML_extrusionOk, sal_True );
+ rPath2D.stroke = rAttribs.getBool( XML_stroke, true );
+ rPath2D.extrusionOk = rAttribs.getBool( XML_extrusionOk, true );
}
Path2DContext::~Path2DContext()