summaryrefslogtreecommitdiff
path: root/xmloff/source/chart/XMLErrorIndicatorPropertyHdl.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'xmloff/source/chart/XMLErrorIndicatorPropertyHdl.cxx')
-rw-r--r--xmloff/source/chart/XMLErrorIndicatorPropertyHdl.cxx5
1 files changed, 4 insertions, 1 deletions
diff --git a/xmloff/source/chart/XMLErrorIndicatorPropertyHdl.cxx b/xmloff/source/chart/XMLErrorIndicatorPropertyHdl.cxx
index 6dbb39926c6c..966f33ef85d3 100644
--- a/xmloff/source/chart/XMLErrorIndicatorPropertyHdl.cxx
+++ b/xmloff/source/chart/XMLErrorIndicatorPropertyHdl.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.
@@ -40,7 +41,7 @@ XMLErrorIndicatorPropertyHdl::~XMLErrorIndicatorPropertyHdl()
sal_Bool XMLErrorIndicatorPropertyHdl::importXML( const ::rtl::OUString& rStrImpValue,
uno::Any& rValue, const SvXMLUnitConverter& /*rUnitConverter*/ ) const
{
- sal_Bool bValue;
+ bool bValue;
SvXMLUnitConverter::convertBool( bValue, rStrImpValue );
// modify existing value
@@ -103,3 +104,5 @@ sal_Bool XMLErrorIndicatorPropertyHdl::exportXML( ::rtl::OUString& rStrExpValue,
// only export if set to true
return bValue;
}
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */