From 317a90fd9d090aa2fe879549553d6491eb5028bf Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Sun, 9 Jun 2019 12:13:09 +0200 Subject: revert part of "loplugin:unusedmethods" i.e. commit 53312ca4ee722a6d5ba22d1f578c6de5fbc37207 to fix screenshot build Change-Id: I87df7b5e1b1afaeb314420484f2c924e64031764 Reviewed-on: https://gerrit.libreoffice.org/73731 Tested-by: Jenkins Reviewed-by: Noel Grandin --- sd/source/ui/dlg/sddlgfact.cxx | 5 +++++ sd/source/ui/dlg/sddlgfact.hxx | 1 + 2 files changed, 6 insertions(+) (limited to 'sd/source/ui') diff --git a/sd/source/ui/dlg/sddlgfact.cxx b/sd/source/ui/dlg/sddlgfact.cxx index 956386e1b83b..6c80853da1dd 100644 --- a/sd/source/ui/dlg/sddlgfact.cxx +++ b/sd/source/ui/dlg/sddlgfact.cxx @@ -453,6 +453,11 @@ VclPtr SdAbstractDialogFactory_Impl::CreateMorphDlg(weld::Wind return VclPtr::Create(std::make_unique<::sd::MorphDlg>(pParent, pObj1, pObj2)); } +VclPtr SdAbstractDialogFactory_Impl::CreateSdOutlineBulletTabDlg(weld::Window* pParent, const SfxItemSet* pAttr, ::sd::View* pView) +{ + return VclPtr::Create(std::make_unique<::sd::OutlineBulletDlg>(pParent, pAttr, pView)); +} + VclPtr SdAbstractDialogFactory_Impl::CreateSdParagraphTabDlg(weld::Window* pParent, const SfxItemSet* pAttr ) { return VclPtr::Create(std::make_unique(pParent, pAttr)); diff --git a/sd/source/ui/dlg/sddlgfact.hxx b/sd/source/ui/dlg/sddlgfact.hxx index 782c20e56adf..ea5f5587df87 100644 --- a/sd/source/ui/dlg/sddlgfact.hxx +++ b/sd/source/ui/dlg/sddlgfact.hxx @@ -382,6 +382,7 @@ public: virtual VclPtr CreateSdInsertLayerDlg(weld::Window* pParent, const SfxItemSet& rInAttrs, bool bDeletable, const OUString& aStr) override; virtual VclPtr CreateSdInsertPagesObjsDlg(weld::Window* pParent, const SdDrawDocument* pDoc, SfxMedium* pSfxMedium, const OUString& rFileName ) override; virtual VclPtr CreateMorphDlg(weld::Window* pParent, const SdrObject* pObj1, const SdrObject* pObj2) override; + virtual VclPtr CreateSdOutlineBulletTabDlg(weld::Window* pParent, const SfxItemSet* pAttr, ::sd::View* pView) override; virtual VclPtr CreateSdParagraphTabDlg(weld::Window* pParent, const SfxItemSet* pAttr) override; virtual VclPtr CreateSdStartPresentationDlg(weld::Window* pWindow, const SfxItemSet& rInAttrs, const std::vector &rPageNames, SdCustomShowList* pCSList ) override; -- cgit