summaryrefslogtreecommitdiff
path: root/editeng
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2021-03-19 20:48:23 +0000
committerCaolán McNamara <caolanm@redhat.com>2021-03-20 16:53:25 +0100
commit51e87c0e27ef85bdc47674a8b8f0e7ce0f431528 (patch)
treeb0439b9d32b2e9a7b8e809e356a749b7790778a9 /editeng
parent918dc4c2050ff0e1e95d0dfc2c8db3a376161f16 (diff)
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@redhat.com>
Diffstat (limited to 'editeng')
-rw-r--r--editeng/source/outliner/outliner.cxx2
1 files changed, 1 insertions, 1 deletions
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);
}
}