diff options
Diffstat (limited to 'sd/source/ui/dlg/paragr.cxx')
-rw-r--r-- | sd/source/ui/dlg/paragr.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sd/source/ui/dlg/paragr.cxx b/sd/source/ui/dlg/paragr.cxx index 82c6a5f72daf..3b7aa7698cc6 100644 --- a/sd/source/ui/dlg/paragr.cxx +++ b/sd/source/ui/dlg/paragr.cxx @@ -39,7 +39,7 @@ public: virtual ~SdParagraphNumTabPage() override; virtual void dispose() override; - static VclPtr<SfxTabPage> Create( vcl::Window* pParent, const SfxItemSet* rSet ); + static VclPtr<SfxTabPage> Create( TabPageParent pParent, const SfxItemSet* rSet ); static const sal_uInt16* GetRanges(); virtual bool FillItemSet( SfxItemSet* rSet ) override; @@ -82,9 +82,9 @@ void SdParagraphNumTabPage::dispose() SfxTabPage::dispose(); } -VclPtr<SfxTabPage> SdParagraphNumTabPage::Create(vcl::Window *pParent, const SfxItemSet * rAttrSet) +VclPtr<SfxTabPage> SdParagraphNumTabPage::Create(TabPageParent pParent, const SfxItemSet * rAttrSet) { - return VclPtr<SdParagraphNumTabPage>::Create( pParent, *rAttrSet ); + return VclPtr<SdParagraphNumTabPage>::Create( pParent.pParent, *rAttrSet ); } const sal_uInt16* SdParagraphNumTabPage::GetRanges() |