[Libreoffice-commits] core.git: Branch 'libreoffice-6-3' - editeng/source

Caolán McNamara (via logerrit) logerrit at kemper.freedesktop.org
Thu Jun 20 10:52:44 UTC 2019


 editeng/source/editeng/impedit4.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 948b1c6ae3f7a647b8761e8015280ebe283a3f98
Author:     Caolán McNamara <caolanm at redhat.com>
AuthorDate: Thu Jun 20 09:26:12 2019 +0100
Commit:     Caolán McNamara <caolanm at redhat.com>
CommitDate: Thu Jun 20 12:51:56 2019 +0200

    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/74422
    Tested-by: Jenkins
    Reviewed-by: Caolán McNamara <caolanm at redhat.com>
    Tested-by: Caolán McNamara <caolanm at redhat.com>

diff --git a/editeng/source/editeng/impedit4.cxx b/editeng/source/editeng/impedit4.cxx
index d3f23c6ff786..d285629f7c00 100644
--- a/editeng/source/editeng/impedit4.cxx
+++ b/editeng/source/editeng/impedit4.cxx
@@ -2352,7 +2352,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);
                             }
                         }
                     }


More information about the Libreoffice-commits mailing list