[Libreoffice-commits] core.git: editeng/source

Caolán McNamara (via logerrit) logerrit at kemper.freedesktop.org
Sat Mar 20 15:54:12 UTC 2021


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

New commits:
commit 51e87c0e27ef85bdc47674a8b8f0e7ce0f431528
Author:     Caolán McNamara <caolanm at redhat.com>
AuthorDate: Fri Mar 19 20:48:23 2021 +0000
Commit:     Caolán McNamara <caolanm at redhat.com>
CommitDate: Sat Mar 20 16:53:25 2021 +0100

    invalidate via Editview::InvalidateWindow
    
    which is the same as the old for the case of hosted in a vcl::Window
    but calls EditViewCallbacks::EditViewInvalidate if installed
    
    Change-Id: I3fff631102c68384f2a4913a57ce6de2039af9fc
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/112784
    Tested-by: Jenkins
    Reviewed-by: Caolán McNamara <caolanm at redhat.com>

diff --git a/editeng/source/outliner/outliner.cxx b/editeng/source/outliner/outliner.cxx
index 53fda5c1171c..7b259959ea04 100644
--- a/editeng/source/outliner/outliner.cxx
+++ b/editeng/source/outliner/outliner.cxx
@@ -1092,7 +1092,7 @@ void Outliner::InvalidateBullet(sal_Int32 nPara)
         aRect.SetBottom( aPos.Y() );
         aRect.AdjustBottom(nLineHeight );
 
-        pView->GetWindow()->Invalidate( aRect );
+        pView->pEditView->InvalidateWindow(aRect);
     }
 }
 


More information about the Libreoffice-commits mailing list