diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-10-17 15:15:32 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-10-19 07:58:40 +0200 |
commit | 7837447287bb846a255dd42acec888abdad8c4e7 (patch) | |
tree | b72e6aa20280a0ec18c78866350ee9eb55afe5eb /sd/source | |
parent | 90d9d20227f7b44b61575701933c42c9548088e1 (diff) |
loplugin:virtualdead unused param in sd::ViewShell::UpdatePreview
Change-Id: I1ac98096d117e3ae7c2f0be2690acef32b85fbdb
Reviewed-on: https://gerrit.libreoffice.org/81073
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sd/source')
-rw-r--r-- | sd/source/ui/app/sdmod1.cxx | 4 | ||||
-rw-r--r-- | sd/source/ui/inc/OutlineViewShell.hxx | 2 | ||||
-rw-r--r-- | sd/source/ui/inc/ViewShell.hxx | 2 | ||||
-rw-r--r-- | sd/source/ui/view/outlnvsh.cxx | 2 | ||||
-rw-r--r-- | sd/source/ui/view/viewshel.cxx | 4 |
5 files changed, 7 insertions, 7 deletions
diff --git a/sd/source/ui/app/sdmod1.cxx b/sd/source/ui/app/sdmod1.cxx index 2949cdad454d..3d84ddb0da56 100644 --- a/sd/source/ui/app/sdmod1.cxx +++ b/sd/source/ui/app/sdmod1.cxx @@ -605,12 +605,12 @@ void OutlineToImpressFinalizer::operator() (bool) // following UpdatePreview() call accesses the // correct paragraphs. pView->SetActualPage(pPage); - pOutlineShell->UpdatePreview(pPage, true); + pOutlineShell->UpdatePreview(pPage); } // Select the first slide. SdPage* pPage = mrDocument.GetSdPage(0, PageKind::Standard); pView->SetActualPage(pPage); - pOutlineShell->UpdatePreview(pPage, true); + pOutlineShell->UpdatePreview(pPage); } // Undo-Stack needs to be cleared, else the user may remove the diff --git a/sd/source/ui/inc/OutlineViewShell.hxx b/sd/source/ui/inc/OutlineViewShell.hxx index f7d05f5721b9..b2a6aaf9aef4 100644 --- a/sd/source/ui/inc/OutlineViewShell.hxx +++ b/sd/source/ui/inc/OutlineViewShell.hxx @@ -132,7 +132,7 @@ public: /** Update the preview to show the specified page. */ - virtual void UpdatePreview (SdPage* pPage, bool bInit = false) override; + virtual void UpdatePreview (SdPage* pPage) override; virtual css::uno::Reference<css::drawing::XDrawSubController> CreateSubController() override; diff --git a/sd/source/ui/inc/ViewShell.hxx b/sd/source/ui/inc/ViewShell.hxx index d446cef7996c..fd551dc298a5 100644 --- a/sd/source/ui/inc/ViewShell.hxx +++ b/sd/source/ui/inc/ViewShell.hxx @@ -209,7 +209,7 @@ public: model according to the content of the outline view. This in turn updates the previews in the slide sorter. */ - virtual void UpdatePreview (SdPage* pPage, bool bInit = false); + virtual void UpdatePreview (SdPage* pPage); void DrawMarkRect(const ::tools::Rectangle& rRect) const; diff --git a/sd/source/ui/view/outlnvsh.cxx b/sd/source/ui/view/outlnvsh.cxx index 0c0ca15a4062..87bb5de8a454 100644 --- a/sd/source/ui/view/outlnvsh.cxx +++ b/sd/source/ui/view/outlnvsh.cxx @@ -1545,7 +1545,7 @@ SdPage* OutlineViewShell::GetActualPage() return pOlView->GetActualPage(); } -void OutlineViewShell::UpdatePreview( SdPage* pPage, bool ) +void OutlineViewShell::UpdatePreview( SdPage* pPage ) { const bool bNewPage = pPage != pLastPage; pLastPage = pPage; diff --git a/sd/source/ui/view/viewshel.cxx b/sd/source/ui/view/viewshel.cxx index 45a775aa3375..5df5c54de71e 100644 --- a/sd/source/ui/view/viewshel.cxx +++ b/sd/source/ui/view/viewshel.cxx @@ -327,7 +327,7 @@ void ViewShell::Activate(bool bIsMDIActivate) GetCurrentFunction()->Activate(); if(!GetDocSh()->IsUIActive()) - UpdatePreview( GetActualPage(), true ); + UpdatePreview( GetActualPage() ); } ReadFrameViewData( mpFrameView ); @@ -1060,7 +1060,7 @@ bool ViewShell::PrepareClose (bool bUI) return bResult; } -void ViewShell::UpdatePreview (SdPage*, bool ) +void ViewShell::UpdatePreview (SdPage*) { // Do nothing. After the actual preview has been removed, // OutlineViewShell::UpdatePreview() is the place where something |