sw/source/uibase/uno/unotxvw.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-)
New commits: commit a0fa7f8245d207071e25e2f6b7268becf7cb49e4 Author: Andrea Gelmini <[email protected]> AuthorDate: Tue Jun 18 23:01:36 2024 +0200 Commit: Julien Nabet <[email protected]> CommitDate: Wed Jun 19 08:33:49 2024 +0200 Fix typo Change-Id: I5db57545327b839f71676aadcc688eb8bc26b8bc Reviewed-on: https://gerrit.libreoffice.org/c/core/+/169172 Reviewed-by: Julien Nabet <[email protected]> Tested-by: Julien Nabet <[email protected]> diff --git a/sw/source/uibase/uno/unotxvw.cxx b/sw/source/uibase/uno/unotxvw.cxx index 35730b6cc492..51115f25986d 100644 --- a/sw/source/uibase/uno/unotxvw.cxx +++ b/sw/source/uibase/uno/unotxvw.cxx @@ -258,7 +258,7 @@ uno::Any SwXTextView::getSelection() uno::Reference< uno::XInterface > aRef; if(GetView()) { - //force immediat shell update + //force immediate shell update m_pView->StopShellTimer(); //Generating an interface from the current selection. SwWrtShell& rSh = m_pView->GetWrtShell(); @@ -1658,7 +1658,7 @@ uno::Reference< datatransfer::XTransferable > SAL_CALL SwXTextView::getTransfera { SolarMutexGuard aGuard; - //force immediat shell update + //force immediate shell update GetView()->StopShellTimer(); SwWrtShell& rSh = GetView()->GetWrtShell(); if ( GetView()->GetShellMode() == ShellMode::DrawText ) @@ -1682,7 +1682,7 @@ void SAL_CALL SwXTextView::insertTransferable( const uno::Reference< datatransfe { SolarMutexGuard aGuard; - //force immediat shell update + //force immediate shell update GetView()->StopShellTimer(); SwWrtShell& rSh = GetView()->GetWrtShell(); if ( GetView()->GetShellMode() == ShellMode::DrawText )
