summaryrefslogtreecommitdiffstats
path: root/sdext/source/presenter/PresenterPaintManager.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sdext/source/presenter/PresenterPaintManager.cxx')
-rw-r--r--sdext/source/presenter/PresenterPaintManager.cxx10
1 files changed, 3 insertions, 7 deletions
diff --git a/sdext/source/presenter/PresenterPaintManager.cxx b/sdext/source/presenter/PresenterPaintManager.cxx
index bd39112e7956..5fef2118f60e 100644
--- a/sdext/source/presenter/PresenterPaintManager.cxx
+++ b/sdext/source/presenter/PresenterPaintManager.cxx
@@ -42,8 +42,7 @@ PresenterPaintManager::PresenterPaintManager (
::std::function<void (const css::awt::Rectangle& rRepaintBox)>
PresenterPaintManager::GetInvalidator (
- const css::uno::Reference<css::awt::XWindow>& rxWindow,
- const bool bSynchronous)
+ const css::uno::Reference<css::awt::XWindow>& rxWindow)
{
return ::boost::bind(
static_cast<void (PresenterPaintManager::*)(
@@ -53,16 +52,13 @@ PresenterPaintManager::PresenterPaintManager (
this,
rxWindow,
_1,
- bSynchronous);
+ false/*bSynchronous*/);
}
void PresenterPaintManager::Invalidate (
- const css::uno::Reference<css::awt::XWindow>& rxWindow,
- const bool bSynchronous)
+ const css::uno::Reference<css::awt::XWindow>& rxWindow)
{
sal_Int16 nInvalidateMode (awt::InvalidateStyle::CHILDREN);
- if (bSynchronous)
- nInvalidateMode |= awt::InvalidateStyle::UPDATE;
PresenterPaneContainer::SharedPaneDescriptor pDescriptor(
mpPaneContainer->FindContentWindow(rxWindow));