summaryrefslogtreecommitdiff
path: root/sfx2/source/control/sfxstatuslistener.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sfx2/source/control/sfxstatuslistener.cxx')
-rw-r--r--sfx2/source/control/sfxstatuslistener.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sfx2/source/control/sfxstatuslistener.cxx b/sfx2/source/control/sfxstatuslistener.cxx
index 96c77e4565d1..56b9aecdc6a5 100644
--- a/sfx2/source/control/sfxstatuslistener.cxx
+++ b/sfx2/source/control/sfxstatuslistener.cxx
@@ -163,17 +163,17 @@ throw( RuntimeException, std::exception )
SfxSlotPool& rPool = SfxSlotPool::GetSlotPool( pViewFrame );
const SfxSlot* pSlot = rPool.GetSlot( m_nSlotID );
- SfxItemState eState = SFX_ITEM_DISABLED;
+ SfxItemState eState = SfxItemState::DISABLED;
SfxPoolItem* pItem = NULL;
if ( rEvent.IsEnabled )
{
- eState = SFX_ITEM_DEFAULT;
+ eState = SfxItemState::DEFAULT;
::com::sun::star::uno::Type pType = rEvent.State.getValueType();
if ( pType == ::cppu::UnoType< ::cppu::UnoVoidType >::get() )
{
pItem = new SfxVoidItem( m_nSlotID );
- eState = SFX_ITEM_UNKNOWN;
+ eState = SfxItemState::UNKNOWN;
}
else if ( pType == cppu::UnoType< bool >::get() )
{