summaryrefslogtreecommitdiff
path: root/sw/source/core/objectpositioning/environmentofanchoredobject.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sw/source/core/objectpositioning/environmentofanchoredobject.cxx')
-rw-r--r--sw/source/core/objectpositioning/environmentofanchoredobject.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/source/core/objectpositioning/environmentofanchoredobject.cxx b/sw/source/core/objectpositioning/environmentofanchoredobject.cxx
index 9d022c5dce13..46c4818f0319 100644
--- a/sw/source/core/objectpositioning/environmentofanchoredobject.cxx
+++ b/sw/source/core/objectpositioning/environmentofanchoredobject.cxx
@@ -56,7 +56,7 @@ const SwLayoutFrm& SwEnvironmentOfAnchoredObject::GetHoriEnvironmentLayoutFrm(
}
}
- OSL_ENSURE( pHoriEnvironmentLayFrm->ISA(SwLayoutFrm),
+ OSL_ENSURE( dynamic_cast< const SwLayoutFrm *>( pHoriEnvironmentLayFrm ) != nullptr,
"SwEnvironmentOfAnchoredObject::GetHoriEnvironmentLayoutFrm(..) - found frame isn't a layout frame" );
return static_cast<const SwLayoutFrm&>(*pHoriEnvironmentLayFrm);
@@ -90,7 +90,7 @@ const SwLayoutFrm& SwEnvironmentOfAnchoredObject::GetVertEnvironmentLayoutFrm(
}
}
- OSL_ENSURE( pVertEnvironmentLayFrm->ISA(SwLayoutFrm),
+ OSL_ENSURE( dynamic_cast< const SwLayoutFrm *>( pVertEnvironmentLayFrm ) != nullptr,
"SwEnvironmentOfAnchoredObject::GetVertEnvironmentLayoutFrm(..) - found frame isn't a layout frame" );
return static_cast<const SwLayoutFrm&>(*pVertEnvironmentLayFrm);