diff options
Diffstat (limited to 'sw/source/uibase/uiview/viewstat.cxx')
-rw-r--r-- | sw/source/uibase/uiview/viewstat.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/source/uibase/uiview/viewstat.cxx b/sw/source/uibase/uiview/viewstat.cxx index 875b7b473858..d55975b86d9c 100644 --- a/sw/source/uibase/uiview/viewstat.cxx +++ b/sw/source/uibase/uiview/viewstat.cxx @@ -196,7 +196,7 @@ void SwView::GetState(SfxItemSet &rSet) SfxImageItem aImgItem(nWhich, bWeb ? SwView::m_nWebInsertCtrlState : SwView::m_nInsertCtrlState); SfxSlotPool& rPool = SfxSlotPool::GetSlotPool( GetViewFrame() ); const SfxSlot* pSlot = rPool.GetSlot( aImgItem.GetValue() ); - if(pSlot && pSlot->IsMode( SFX_SLOT_IMAGEROTATION )) + if(pSlot && pSlot->IsMode( SfxSlotMode::IMAGEROTATION )) { if(m_pWrtShell->IsInVerticalText()) aImgItem.SetRotation(2700); @@ -218,7 +218,7 @@ void SwView::GetState(SfxItemSet &rSet) SfxImageItem aImgItem(nWhich, SwView::m_nInsertObjectCtrlState); SfxSlotPool& rPool = SfxSlotPool::GetSlotPool( GetViewFrame() ); const SfxSlot* pSlot = rPool.GetSlot( aImgItem.GetValue() ); - if(pSlot && pSlot->IsMode( SFX_SLOT_IMAGEROTATION )) + if(pSlot && pSlot->IsMode( SfxSlotMode::IMAGEROTATION )) { if (m_pWrtShell->IsInVerticalText()) aImgItem.SetRotation(2700); |