diff options
author | Caolán McNamara <caolanm@redhat.com> | 2019-06-20 09:26:12 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2019-06-20 15:14:28 +0200 |
commit | ccc0e03dcfaceeb4f729c959373853d24154de77 (patch) | |
tree | eb257e8c78ef8ebcd9ac4f2a0a3fdcc436b70a27 /editeng | |
parent | 82959e46f69561b9b8f8be9f7daf1c96d3ea7061 (diff) |
InvalidateAtWindow should be preferred
it already call GetWindow()->Invalidate(aClipRect) internally
for the usual case, and correctly calls EditViewInvalidate
when the editview is not used in a vcl::Window
Change-Id: I9f985cb91bc768b410838289efc994d9a5b249d4
Reviewed-on: https://gerrit.libreoffice.org/74421
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'editeng')
-rw-r--r-- | editeng/source/editeng/impedit4.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editeng/source/editeng/impedit4.cxx b/editeng/source/editeng/impedit4.cxx index 0f77bd55f54f..ae1513cf6d8b 100644 --- a/editeng/source/editeng/impedit4.cxx +++ b/editeng/source/editeng/impedit4.cxx @@ -2353,7 +2353,7 @@ void ImpEditEngine::DoOnlineSpelling( ContentNode* pThisNodeOnly, bool bSpellAtC { // convert to window coordinates .... aClipRect.SetPos( pView->pImpEditView->GetWindowPos( aClipRect.TopLeft() ) ); - pView->pImpEditView->GetWindow()->Invalidate(aClipRect); + pView->pImpEditView->InvalidateAtWindow(aClipRect); } } } |