diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-01-28 20:01:16 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-01-28 20:26:25 +0100 |
commit | ad930bddba8002fe592d7242b99867bffed9dbf0 (patch) | |
tree | 0850f58cad301de17622c86d53ea6b45041f510a /oox/source/ppt/headerfootercontext.cxx | |
parent | 0f50845dbd751140612b09a1210922eb70af729e (diff) |
bool improvements
Change-Id: I171212bbfc2f54a16b5669ab4401a3168e7f0552
Diffstat (limited to 'oox/source/ppt/headerfootercontext.cxx')
-rw-r--r-- | oox/source/ppt/headerfootercontext.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/oox/source/ppt/headerfootercontext.cxx b/oox/source/ppt/headerfootercontext.cxx index fe6356b7b19a..d0f9b25f3a89 100644 --- a/oox/source/ppt/headerfootercontext.cxx +++ b/oox/source/ppt/headerfootercontext.cxx @@ -32,19 +32,19 @@ namespace oox { namespace ppt { { if ( rAttribs.hasAttribute( XML_sldNum ) ) { - rHeaderFooter.mbSlideNumber = rAttribs.getBool( XML_sldNum, sal_True ); + rHeaderFooter.mbSlideNumber = rAttribs.getBool( XML_sldNum, true ); } if ( rAttribs.hasAttribute( XML_hdr ) ) { - rHeaderFooter.mbHeader = rAttribs.getBool( XML_hdr, sal_True ); + rHeaderFooter.mbHeader = rAttribs.getBool( XML_hdr, true ); } if ( rAttribs.hasAttribute( XML_ftr ) ) { - rHeaderFooter.mbFooter = rAttribs.getBool( XML_ftr, sal_True ); + rHeaderFooter.mbFooter = rAttribs.getBool( XML_ftr, true ); } if ( rAttribs.hasAttribute( XML_dt ) ) { - rHeaderFooter.mbDateTime = rAttribs.getBool( XML_dt, sal_True ); + rHeaderFooter.mbDateTime = rAttribs.getBool( XML_dt, true ); } } |