summaryrefslogtreecommitdiff
path: root/sfx2/source/statbar/stbitem.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sfx2/source/statbar/stbitem.cxx')
-rw-r--r--sfx2/source/statbar/stbitem.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sfx2/source/statbar/stbitem.cxx b/sfx2/source/statbar/stbitem.cxx
index 1a6a50530186..afa7638bb4ec 100644
--- a/sfx2/source/statbar/stbitem.cxx
+++ b/sfx2/source/statbar/stbitem.cxx
@@ -444,12 +444,12 @@ void SfxStatusBarControl::StateChanged
{
DBG_ASSERT( pBar != nullptr, "setting state to dangling StatusBar" );
- const SfxStringItem* pStr = PTR_CAST( SfxStringItem, pState );
+ const SfxStringItem* pStr = dynamic_cast<const SfxStringItem*>( pState );
if ( eState == SfxItemState::DEFAULT && pStr )
pBar->SetItemText( nSID, pStr->GetValue() );
else
{
- DBG_ASSERT( eState != SfxItemState::DEFAULT || pState->ISA(SfxVoidItem),
+ DBG_ASSERT( eState != SfxItemState::DEFAULT || dynamic_cast< const SfxVoidItem *>( pState ) != nullptr,
"wrong SfxPoolItem subclass in SfxStatusBarControl" );
pBar->SetItemText( nSID, OUString() );
}