diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-02-16 22:51:15 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-02-17 17:55:19 +0100 |
commit | 05f742d28b3786f44781af5b069c05c16b84decd (patch) | |
tree | dacb340f99ad4e47d20557eee04e6f69f5d15721 /xmloff/source/style/PageMasterPropHdl.cxx | |
parent | faced6b5f72b096800a232749cce6b38a76d5bac (diff) |
comphelper: sal_Bool -> bool
Change-Id: I6fc331ae0706f4bb193543011c8d4ae0a385fcc0
Diffstat (limited to 'xmloff/source/style/PageMasterPropHdl.cxx')
-rw-r--r-- | xmloff/source/style/PageMasterPropHdl.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xmloff/source/style/PageMasterPropHdl.cxx b/xmloff/source/style/PageMasterPropHdl.cxx index cb5d2902617a..a171f0c274d5 100644 --- a/xmloff/source/style/PageMasterPropHdl.cxx +++ b/xmloff/source/style/PageMasterPropHdl.cxx @@ -331,7 +331,7 @@ bool XMLPMPropHdl_CenterHorizontal::importXML( if (IsXMLToken( rStrImpValue, XML_BOTH) || IsXMLToken( rStrImpValue, XML_HORIZONTAL)) { - rValue = ::cppu::bool2any(sal_True); + rValue = ::cppu::bool2any(true); bRet = true; } @@ -372,7 +372,7 @@ bool XMLPMPropHdl_CenterVertical::importXML( if (IsXMLToken(rStrImpValue, XML_BOTH) || IsXMLToken(rStrImpValue, XML_VERTICAL) ) { - rValue = ::cppu::bool2any(sal_True); + rValue = ::cppu::bool2any(true); bRet = true; } |