From 2d0a4182712673d8f7a5abe919cd2a1d5ece4a77 Mon Sep 17 00:00:00 2001 From: Muhammet Kara Date: Thu, 31 Oct 2019 09:19:00 +0300 Subject: Fix missing param for screenshotting SdTabPageDialog Change-Id: I8f467c9e72811cb6d7f015f7d7d9a944882d48ec Reviewed-on: https://gerrit.libreoffice.org/81820 Tested-by: Jenkins Reviewed-by: Muhammet Kara --- sd/qa/unit/dialogs-test.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sd') diff --git a/sd/qa/unit/dialogs-test.cxx b/sd/qa/unit/dialogs-test.cxx index 231870815657..a3f39a69650b 100644 --- a/sd/qa/unit/dialogs-test.cxx +++ b/sd/qa/unit/dialogs-test.cxx @@ -306,14 +306,14 @@ VclPtr SdDialogsTest::createDialogByID(sal_uInt32 nID) } case 5: { - // CreateSdTabPageDialog(const SfxItemSet* pAttr, SfxObjectShell* pDocShell, bool bAreaPage = true) override; + // CreateSdTabPageDialog(const SfxItemSet* pAttr, SfxObjectShell* pDocShell, bool bAreaPage = true, bool bIsImpressDoc) override; // needs a special SfxItemSet with merged content from page and other stuff, crashes without that (2nd page) // needs a 'SfxObjectShell* pDocShell', crashes without. Also sufficient: FillStyleItemSet with XFILL_NONE set pRetval = getSdAbstractDialogFactory()->CreateSdTabPageDialog( getViewShell()->GetFrameWeld(), &getEmptyFillStyleSfxItemSet(), getDocShell(), - true); + true, false); break; } case 6: -- cgit