diff options
Diffstat (limited to 'sw/source/uibase/ribbar/inputwin.cxx')
-rw-r--r-- | sw/source/uibase/ribbar/inputwin.cxx | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/sw/source/uibase/ribbar/inputwin.cxx b/sw/source/uibase/ribbar/inputwin.cxx index 255ae24335ab..0402e110fdad 100644 --- a/sw/source/uibase/ribbar/inputwin.cxx +++ b/sw/source/uibase/ribbar/inputwin.cxx @@ -278,7 +278,7 @@ void SwInputWindow::ShowWin() // For input cut the UserInterface m_pView->GetEditWin().LockKeyInput(true); - m_pView->GetViewFrame()->GetDispatcher()->Lock(true); + m_pView->GetViewFrame().GetDispatcher()->Lock(true); m_pWrtShell->Push(); } @@ -337,11 +337,11 @@ void SwInputWindow::ApplyFormula() // presumably there must be an active view now since the event arrived SwView *const pActiveView = ::GetActiveView(); // this just makes the input window go away, so that the next time it works - pActiveView->GetViewFrame()->GetDispatcher()->Execute(FN_EDIT_FORMULA, SfxCallMode::ASYNCHRON); + pActiveView->GetViewFrame().GetDispatcher()->Execute(FN_EDIT_FORMULA, SfxCallMode::ASYNCHRON); return; } - m_pView->GetViewFrame()->GetDispatcher()->Lock(false); + m_pView->GetViewFrame().GetDispatcher()->Lock(false); m_pView->GetEditWin().LockKeyInput(false); CleanupUglyHackWithUndo(); m_pWrtShell->Pop(SwCursorShell::PopMode::DeleteCurrent); @@ -357,7 +357,7 @@ void SwInputWindow::ApplyFormula() const SfxPoolItem* aArgs[2]; aArgs[0] = &aParam; aArgs[1] = nullptr; - m_pView->GetViewFrame()->GetBindings().Execute( FN_EDIT_FORMULA, aArgs, SfxCallMode::ASYNCHRON ); + m_pView->GetViewFrame().GetBindings().Execute( FN_EDIT_FORMULA, aArgs, SfxCallMode::ASYNCHRON ); } void SwInputWindow::CancelFormula() @@ -370,11 +370,11 @@ void SwInputWindow::CancelFormula() // presumably there must be an active view now since the event arrived SwView *const pActiveView = ::GetActiveView(); // this just makes the input window go away, so that the next time it works - pActiveView->GetViewFrame()->GetDispatcher()->Execute(FN_EDIT_FORMULA, SfxCallMode::ASYNCHRON); + pActiveView->GetViewFrame().GetDispatcher()->Execute(FN_EDIT_FORMULA, SfxCallMode::ASYNCHRON); return; } - m_pView->GetViewFrame()->GetDispatcher()->Lock( false ); + m_pView->GetViewFrame().GetDispatcher()->Lock( false ); m_pView->GetEditWin().LockKeyInput(false); CleanupUglyHackWithUndo(); m_pWrtShell->Pop(SwCursorShell::PopMode::DeleteCurrent); @@ -386,7 +386,7 @@ void SwInputWindow::CancelFormula() m_pView->GetEditWin().GrabFocus(); - m_pView->GetViewFrame()->GetDispatcher()->Execute( FN_EDIT_FORMULA, SfxCallMode::ASYNCHRON); + m_pView->GetViewFrame().GetDispatcher()->Execute( FN_EDIT_FORMULA, SfxCallMode::ASYNCHRON); } const sal_Unicode CH_LRE = 0x202a; |