summaryrefslogtreecommitdiff
path: root/xmloff/source/xforms/XFormsSubmissionContext.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'xmloff/source/xforms/XFormsSubmissionContext.cxx')
-rw-r--r--xmloff/source/xforms/XFormsSubmissionContext.cxx5
1 files changed, 4 insertions, 1 deletions
diff --git a/xmloff/source/xforms/XFormsSubmissionContext.cxx b/xmloff/source/xforms/XFormsSubmissionContext.cxx
index d9984593f8..e000a937c8 100644
--- a/xmloff/source/xforms/XFormsSubmissionContext.cxx
+++ b/xmloff/source/xforms/XFormsSubmissionContext.cxx
@@ -1,3 +1,4 @@
+/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
@@ -105,7 +106,7 @@ XFormsSubmissionContext::~XFormsSubmissionContext()
Any toBool( const OUString& rValue )
{
Any aValue;
- sal_Bool bValue;
+ bool bValue;
if( SvXMLUnitConverter::convertBool( bValue, rValue ) )
{
aValue <<= ( bValue ? true : false );
@@ -180,3 +181,5 @@ SvXMLImportContext* XFormsSubmissionContext::HandleChild(
DBG_ERROR( "no children supported" );
return NULL;
}
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */