diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-05-04 09:33:36 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-05-04 12:05:57 +0200 |
commit | 214e0847f5d1666b4cf23a833bb757f6bace04d0 (patch) | |
tree | 7c4a0d2b645a27fad2cf1a1fe75065a12115022b /sc | |
parent | d4e9fe5a733f9c3a3c0b673379739c768075b465 (diff) |
drop default param in SdrPaintView::VisAreaChanged
to make it easier to remove some unused params
Change-Id: If36f5b69d8a45261ed23ea382b145ac2286ea794
Reviewed-on: https://gerrit.libreoffice.org/37225
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/ui/view/tabview.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/ui/view/tabview.cxx b/sc/source/ui/view/tabview.cxx index 58cf713ada2b..0a524c268df1 100644 --- a/sc/source/ui/view/tabview.cxx +++ b/sc/source/ui/view/tabview.cxx @@ -2155,7 +2155,7 @@ void ScTabView::SetNewVisArea() if (pActive) aViewData.GetViewShell()->VisAreaChanged(); if (pDrawView) - pDrawView->VisAreaChanged(); // no window passed on -> for all windows + pDrawView->VisAreaChanged(nullptr); // no window passed on -> for all windows UpdateAllOverlays(); // #i79909# with drawing MapMode set |