summaryrefslogtreecommitdiff
path: root/sd/source/ui/view/WindowUpdater.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sd/source/ui/view/WindowUpdater.cxx')
-rw-r--r--sd/source/ui/view/WindowUpdater.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sd/source/ui/view/WindowUpdater.cxx b/sd/source/ui/view/WindowUpdater.cxx
index 410a0470f68d..c3f1bb53e337 100644
--- a/sd/source/ui/view/WindowUpdater.cxx
+++ b/sd/source/ui/view/WindowUpdater.cxx
@@ -49,7 +49,7 @@ void WindowUpdater::RegisterWindow (vcl::Window* pWindow)
if (aWindowIterator == maWindowList.end())
{
// Update the device once right now and add it to the list.
- Update (pWindow);
+ Update (pWindow->GetOutDev());
maWindowList.emplace_back(pWindow);
}
}
@@ -115,7 +115,7 @@ void WindowUpdater::ConfigurationChanged( utl::ConfigurationBroadcaster*, Config
{
// Set the current state at all registered output devices.
for (auto& rxWindow : maWindowList)
- Update (rxWindow);
+ Update (rxWindow->GetOutDev());
// Reformat the document for the modified state to take effect.
if (mpDocument != nullptr)