diff options
Diffstat (limited to 'cui')
-rw-r--r-- | cui/source/dialogs/SpellDialog.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cui/source/dialogs/SpellDialog.cxx b/cui/source/dialogs/SpellDialog.cxx index b782ed533d73..b3672ff1c727 100644 --- a/cui/source/dialogs/SpellDialog.cxx +++ b/cui/source/dialogs/SpellDialog.cxx @@ -1906,7 +1906,7 @@ svx::SpellPortions SentenceEditWindow_Impl::CreateSpellPortions() const void SentenceEditWindow_Impl::Undo() { - ::svl::IUndoManager& rUndoMgr = GetTextEngine()->GetUndoManager(); + SfxUndoManager& rUndoMgr = GetTextEngine()->GetUndoManager(); DBG_ASSERT(GetUndoActionCount(), "no undo actions available" ); if(!GetUndoActionCount()) return; @@ -1932,7 +1932,7 @@ void SentenceEditWindow_Impl::ResetUndo() void SentenceEditWindow_Impl::AddUndoAction( SfxUndoAction *pAction ) { - ::svl::IUndoManager& rUndoMgr = GetTextEngine()->GetUndoManager(); + SfxUndoManager& rUndoMgr = GetTextEngine()->GetUndoManager(); rUndoMgr.AddUndoAction(pAction); GetSpellDialog()->m_pUndoPB->Enable(); } |