summaryrefslogtreecommitdiff
path: root/sw/source/core/graphic/grfatr.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sw/source/core/graphic/grfatr.cxx')
-rw-r--r--sw/source/core/graphic/grfatr.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/source/core/graphic/grfatr.cxx b/sw/source/core/graphic/grfatr.cxx
index 8f8a577e2f76..855e9b7a9d79 100644
--- a/sw/source/core/graphic/grfatr.cxx
+++ b/sw/source/core/graphic/grfatr.cxx
@@ -263,7 +263,7 @@ SfxPoolItem* SwTransparencyGrf::Clone( SfxItemPool * ) const
bool SwTransparencyGrf::QueryValue( uno::Any& rVal,
sal_uInt8 ) const
{
- OSL_ENSURE(ISA(SfxByteItem),"Put/QueryValue should be removed!");
+ OSL_ENSURE(dynamic_cast<const SfxByteItem*>( this ) != nullptr,"Put/QueryValue should be removed!");
sal_Int16 nRet = GetValue();
OSL_ENSURE( 0 <= nRet && nRet <= 100, "value out of range" );
rVal <<= nRet;
@@ -274,7 +274,7 @@ bool SwTransparencyGrf::PutValue( const uno::Any& rVal,
sal_uInt8 )
{
//temporary conversion until this is a SfxInt16Item!
- OSL_ENSURE(ISA(SfxByteItem),"Put/QueryValue should be removed!");
+ OSL_ENSURE(dynamic_cast<const SfxByteItem*>( this ) != nullptr,"Put/QueryValue should be removed!");
sal_Int16 nVal = 0;
if(!(rVal >>= nVal) || nVal < -100 || nVal > 100)
return false;