summaryrefslogtreecommitdiff
path: root/comphelper/source/misc/types.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'comphelper/source/misc/types.cxx')
-rw-r--r--comphelper/source/misc/types.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/comphelper/source/misc/types.cxx b/comphelper/source/misc/types.cxx
index 8bee20711804..bb060c4ea912 100644
--- a/comphelper/source/misc/types.cxx
+++ b/comphelper/source/misc/types.cxx
@@ -123,7 +123,7 @@ bool getBOOL(const Any& _rAny)
{
bool nReturn = false;
if (_rAny.getValueType() == ::getCppuBooleanType())
- nReturn = *(sal_Bool*)_rAny.getValue();
+ nReturn = *static_cast<sal_Bool const *>(_rAny.getValue());
else
OSL_FAIL("comphelper::getBOOL : invalid argument !");
return nReturn;
@@ -295,7 +295,7 @@ bool compare_impl(const Type& _rType, const void* pData, const Any& _rValue)
bConversionSuccess = _rValue >>= aTemp;
if (bConversionSuccess)
{
- bRes = *(FontDescriptor*)pData == aTemp;
+ bRes = *static_cast<FontDescriptor const *>(pData) == aTemp;
}
else
bRes = false;