summaryrefslogtreecommitdiffstats
path: root/forms/source/misc/limitedformats.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-05-06 12:37:38 +0200
committerNoel Grandin <noel@peralex.com>2014-05-06 12:38:16 +0200
commitc0d037a6ecbd4389abe3ca9e958d8a4ac9e0287e (patch)
tree617f52ca3be4d2c2f6b5b21fc4ed9a3a8dd1fe77 /forms/source/misc/limitedformats.cxx
parentImplSVEvent::mnEvent is always zero (diff)
downloadcore-c0d037a6ecbd4389abe3ca9e958d8a4ac9e0287e.tar.gz
core-c0d037a6ecbd4389abe3ca9e958d8a4ac9e0287e.zip
forms: sal_Bool->bool
Change-Id: Ifa15f4ed3107b1075b504f09d2cae69ee38d347a
Diffstat (limited to 'forms/source/misc/limitedformats.cxx')
-rw-r--r--forms/source/misc/limitedformats.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/forms/source/misc/limitedformats.cxx b/forms/source/misc/limitedformats.cxx
index abe26ce1ad92..389b94c9366e 100644
--- a/forms/source/misc/limitedformats.cxx
+++ b/forms/source/misc/limitedformats.cxx
@@ -269,7 +269,7 @@ namespace frm
}
- sal_Bool OLimitedFormats::convertFormatKeyPropertyValue(Any& _rConvertedValue, Any& _rOldValue, const Any& _rNewValue)
+ bool OLimitedFormats::convertFormatKeyPropertyValue(Any& _rConvertedValue, Any& _rOldValue, const Any& _rNewValue)
{
OSL_ENSURE(m_xAggregate.is() && (-1 != m_nFormatEnumPropertyHandle), "OLimitedFormats::convertFormatKeyPropertyValue: not initialized!");
@@ -302,8 +302,8 @@ namespace frm
_rOldValue <<= pFormats->nKey;
}
- sal_Bool bFoundIt = (NULL != pFormats->pDescription);
- sal_Bool bModified = sal_False;
+ bool bFoundIt = (NULL != pFormats->pDescription);
+ bool bModified = false;
if (bFoundIt)
{
_rConvertedValue <<= (sal_Int16)nTablePosition;
@@ -337,7 +337,7 @@ namespace frm
return bModified;
}
- return sal_False;
+ return false;
}