summaryrefslogtreecommitdiff
path: root/svx
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.co.uk>2015-10-13 10:46:59 +0200
committerMiklos Vajna <vmiklos@collabora.co.uk>2015-10-14 15:42:53 +0200
commita778dc1e24ba5581b91f833871d1f000fb73d9dc (patch)
tree4eeb2b9a1a234a5fef08d82d3a328062ffd337e8 /svx
parent4357300aa9f786ebb548ffa056666d4fe53244a8 (diff)
tdf#95002 sd tiled rendering: fix handling of images on page switch
It turns out a full invalidation is still needed to trigger the loading of graphics on the new page, so instead of not invalidating just don't emit the notification about it during page switch. Change-Id: Ic99a3d4e268b3db61cf09c78ed0f310c9d365867 (cherry picked from commit 1631fa9a722553da1ebe0650a65e859862c4405d)
Diffstat (limited to 'svx')
-rw-r--r--svx/source/svdraw/svdpagv.cxx5
1 files changed, 2 insertions, 3 deletions
diff --git a/svx/source/svdraw/svdpagv.cxx b/svx/source/svdraw/svdpagv.cxx
index 47fa8f52b471..9c74d433e1c9 100644
--- a/svx/source/svdraw/svdpagv.cxx
+++ b/svx/source/svdraw/svdpagv.cxx
@@ -741,11 +741,10 @@ void SdrPageView::ImpInvalidateHelpLineArea(sal_uInt16 nNum) const
}
}
-void SdrPageView::SetHelpLines(const SdrHelpLineList& rHLL, bool bInvalidate)
+void SdrPageView::SetHelpLines(const SdrHelpLineList& rHLL)
{
aHelpLines=rHLL;
- if (bInvalidate)
- InvalidateAllWin();
+ InvalidateAllWin();
}
void SdrPageView::SetHelpLine(sal_uInt16 nNum, const SdrHelpLine& rNewHelpLine)