summaryrefslogtreecommitdiffstats
path: root/include/xmloff/numehelp.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-03-28 10:53:57 +0200
committerNoel Grandin <noel@peralex.com>2014-03-31 12:37:25 +0200
commitc98a7eec7f24db4e3e7741a52463fca10156ecaf (patch)
tree4178645d542257d622b0ece8b15936cd88febbaf /include/xmloff/numehelp.hxx
parentxmloff: sal_Bool->bool (diff)
downloadcore-c98a7eec7f24db4e3e7741a52463fca10156ecaf.tar.gz
core-c98a7eec7f24db4e3e7741a52463fca10156ecaf.zip
xmloff: sal_Bool->bool
Change-Id: I1c97da5b7bbac348150399afbf386613433e5551
Diffstat (limited to 'include/xmloff/numehelp.hxx')
-rw-r--r--include/xmloff/numehelp.hxx26
1 files changed, 13 insertions, 13 deletions
diff --git a/include/xmloff/numehelp.hxx b/include/xmloff/numehelp.hxx
index ef1bd800b6d1..a90a2b72ac2d 100644
--- a/include/xmloff/numehelp.hxx
+++ b/include/xmloff/numehelp.hxx
@@ -36,7 +36,7 @@ struct XMLNumberFormat
OUString sCurrency;
sal_Int32 nNumberFormat;
sal_Int16 nType;
- sal_Bool bIsStandard : 1;
+ bool bIsStandard : 1;
XMLNumberFormat() : nNumberFormat(0), nType(0) {}
XMLNumberFormat(const OUString& sTempCurrency, sal_Int32 nTempFormat,
sal_Int16 nTempType) : sCurrency(sTempCurrency), nNumberFormat(nTempFormat),
@@ -45,7 +45,7 @@ struct XMLNumberFormat
struct LessNumberFormat
{
- sal_Bool operator() (const XMLNumberFormat& rValue1, const XMLNumberFormat& rValue2) const
+ bool operator() (const XMLNumberFormat& rValue1, const XMLNumberFormat& rValue2) const
{
return rValue1.nNumberFormat < rValue2.nNumberFormat;
}
@@ -81,35 +81,35 @@ public :
const sal_Int16 nTypeKey,
const double& rValue,
const OUString& rCurrencySymbol,
- sal_Bool bExportValue = sal_True);
- static sal_Bool GetCurrencySymbol(const sal_Int32 nNumberFormat, OUString& rCurrencySymbol,
+ bool bExportValue = true);
+ static bool GetCurrencySymbol(const sal_Int32 nNumberFormat, OUString& rCurrencySymbol,
::com::sun::star::uno::Reference< ::com::sun::star::util::XNumberFormatsSupplier > & xNumberFormatsSupplier);
- static sal_Int16 GetCellType(const sal_Int32 nNumberFormat, sal_Bool& bIsStandard,
+ static sal_Int16 GetCellType(const sal_Int32 nNumberFormat, bool& bIsStandard,
::com::sun::star::uno::Reference< ::com::sun::star::util::XNumberFormatsSupplier > & xNumberFormatsSupplier);
static void SetNumberFormatAttributes(SvXMLExport& rXMLExport,
const sal_Int32 nNumberFormat,
const double& rValue,
- sal_Bool bExportValue = sal_True);
+ bool bExportValue = true);
static void SetNumberFormatAttributes(SvXMLExport& rXMLExport,
const OUString& rValue,
const OUString& rCharacters,
- sal_Bool bExportValue = sal_True,
- sal_Bool bExportTypeAttribute = sal_True);
+ bool bExportValue = true,
+ bool bExportTypeAttribute = true);
- sal_Bool GetCurrencySymbol(const sal_Int32 nNumberFormat, OUString& rCurrencySymbol);
+ bool GetCurrencySymbol(const sal_Int32 nNumberFormat, OUString& rCurrencySymbol);
sal_Int16 GetCellType(const sal_Int32 nNumberFormat, bool& bIsStandard);
void WriteAttributes(const sal_Int16 nTypeKey,
const double& rValue,
const OUString& rCurrencySymbol,
- sal_Bool bExportValue = sal_True, sal_uInt16 nNamespace = XML_NAMESPACE_OFFICE);
+ bool bExportValue = true, sal_uInt16 nNamespace = XML_NAMESPACE_OFFICE);
void SetNumberFormatAttributes(const sal_Int32 nNumberFormat,
const double& rValue,
- sal_Bool bExportValue = sal_True,
+ bool bExportValue = true,
sal_uInt16 nNamespace = XML_NAMESPACE_OFFICE, bool bExportCurrencySymbol = true);
void SetNumberFormatAttributes(const OUString& rValue,
const OUString& rCharacters,
- sal_Bool bExportValue = sal_True,
- sal_Bool bExportTypeAttribute = sal_True,
+ bool bExportValue = true,
+ bool bExportTypeAttribute = true,
sal_uInt16 nNamespace = XML_NAMESPACE_OFFICE);
};