summaryrefslogtreecommitdiff
path: root/xmloff/source/xforms
diff options
context:
space:
mode:
authorNorbert Thiebaud <nthiebaud@gmail.com>2010-10-04 15:36:52 +0100
committerMichael Meeks <michael.meeks@novell.com>2010-10-04 17:01:12 +0100
commitaa3926d8122a2627a99a4bb7bc6ec98637d45efe (patch)
tree9a4366acdd2d93434f420299acd4e36c3a7aa071 /xmloff/source/xforms
parent45169c93d57acf066748c3ff93b45c919e209db7 (diff)
native bool support in SvXMLUnitConverter
Diffstat (limited to 'xmloff/source/xforms')
-rw-r--r--xmloff/source/xforms/XFormsSubmissionContext.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/xmloff/source/xforms/XFormsSubmissionContext.cxx b/xmloff/source/xforms/XFormsSubmissionContext.cxx
index 594b3a871fe6..1afdc33aa46a 100644
--- a/xmloff/source/xforms/XFormsSubmissionContext.cxx
+++ b/xmloff/source/xforms/XFormsSubmissionContext.cxx
@@ -105,7 +105,7 @@ XFormsSubmissionContext::~XFormsSubmissionContext()
Any toBool( const OUString& rValue )
{
Any aValue;
- sal_Bool bValue;
+ bool bValue;
if( SvXMLUnitConverter::convertBool( bValue, rValue ) )
{
aValue <<= ( bValue ? true : false );