diff options
author | Michael Meeks <michael.meeks@novell.com> | 2010-10-04 16:56:46 +0100 |
---|---|---|
committer | Michael Meeks <michael.meeks@novell.com> | 2010-10-04 17:01:12 +0100 |
commit | c94293272dce73b76a0cadc5d80be05daf73b628 (patch) | |
tree | 793d6d9e6bf01197966f3f55ad415d330dcbb459 /xmloff | |
parent | 621299109c29c299919faae17586f6378ce758a3 (diff) |
tweak missing bool
Diffstat (limited to 'xmloff')
-rw-r--r-- | xmloff/source/text/XMLIndexBibliographyConfigurationContext.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xmloff/source/text/XMLIndexBibliographyConfigurationContext.cxx b/xmloff/source/text/XMLIndexBibliographyConfigurationContext.cxx index a3c9dfafc762..43df2b34dcde 100644 --- a/xmloff/source/text/XMLIndexBibliographyConfigurationContext.cxx +++ b/xmloff/source/text/XMLIndexBibliographyConfigurationContext.cxx @@ -123,7 +123,7 @@ void XMLIndexBibliographyConfigurationContext::ProcessAttribute( } else if( IsXMLToken(sLocalName, XML_NUMBERED_ENTRIES) ) { - sal_Bool bTmp; + bool bTmp; if( SvXMLUnitConverter::convertBool(bTmp, sValue) ) { bNumberedEntries = bTmp; |