diff options
Diffstat (limited to 'sd')
-rw-r--r-- | sd/source/core/drawdoc.cxx | 2 | ||||
-rw-r--r-- | sd/source/ui/view/viewshe2.cxx | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/sd/source/core/drawdoc.cxx b/sd/source/core/drawdoc.cxx index 0a383c637615..a30fdb097d6e 100644 --- a/sd/source/core/drawdoc.cxx +++ b/sd/source/core/drawdoc.cxx @@ -723,7 +723,7 @@ void SdDrawDocument::UpdateAllLinks() rEmbeddedObjectContainer.setUserAllowsLinkUpdate(true); } - pLinkManager->UpdateAllLinks(); // query box: update all links? + pLinkManager->UpdateAllLinks(true, false, nullptr); // query box: update all links? if (s_pDocLockedInsertingLinks == this) s_pDocLockedInsertingLinks = nullptr; // unlock inserting links diff --git a/sd/source/ui/view/viewshe2.cxx b/sd/source/ui/view/viewshe2.cxx index 3eee7b1e09e4..c56e19ac138e 100644 --- a/sd/source/ui/view/viewshe2.cxx +++ b/sd/source/ui/view/viewshe2.cxx @@ -984,10 +984,10 @@ void ViewShell::ReadUserDataSequence ( const css::uno::Sequence < css::beans::Pr mpFrameView->ReadUserDataSequence( rSequence ); } -void ViewShell::VisAreaChanged(const ::tools::Rectangle& rRect) +void ViewShell::VisAreaChanged(const ::tools::Rectangle& /*rRect*/) { OSL_ASSERT (GetViewShell()!=nullptr); - GetViewShell()->VisAreaChanged(rRect); + GetViewShell()->VisAreaChanged(); } void ViewShell::SetWinViewPos(const Point& rWinPos) |