summaryrefslogtreecommitdiff
path: root/sdext/source/presenter/PresenterWindowManager.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2016-10-27 12:48:08 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2016-10-27 11:39:37 +0000
commite5438e9ef75a7fdc3c8c6ba44d116f277e036d96 (patch)
tree9a1f94e23649f96a6a4b165504680bf6530fed77 /sdext/source/presenter/PresenterWindowManager.cxx
parent618171552e1bcddb07660167d9df4512435269b0 (diff)
loplugin:expandablemethods in sdext
Change-Id: I7d375d6eafdd450ac165539f8f7dd3d02826ac5b Reviewed-on: https://gerrit.libreoffice.org/30323 Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk> Tested-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sdext/source/presenter/PresenterWindowManager.cxx')
-rw-r--r--sdext/source/presenter/PresenterWindowManager.cxx7
1 files changed, 1 insertions, 6 deletions
diff --git a/sdext/source/presenter/PresenterWindowManager.cxx b/sdext/source/presenter/PresenterWindowManager.cxx
index 557b4f94f5dc..2db64ef5eb11 100644
--- a/sdext/source/presenter/PresenterWindowManager.cxx
+++ b/sdext/source/presenter/PresenterWindowManager.cxx
@@ -1111,17 +1111,12 @@ Reference<rendering::XPolyPolygon2D> PresenterWindowManager::CreateClipPolyPolyg
return xPolyPolygon;
}
-
-void PresenterWindowManager::Invalidate()
-{
- mpPresenterController->GetPaintManager()->Invalidate(mxParentWindow);
-}
void PresenterWindowManager::Update()
{
mxClipPolygon = nullptr;
mbIsLayoutPending = true;
- Invalidate();
+ mpPresenterController->GetPaintManager()->Invalidate(mxParentWindow);
}
void PresenterWindowManager::ThrowIfDisposed() const