summaryrefslogtreecommitdiff
path: root/sd
diff options
context:
space:
mode:
authorMuhammet Kara <muhammet.kara@collabora.com>2019-10-31 09:19:00 +0300
committerMuhammet Kara <muhammet.kara@collabora.com>2019-10-31 09:37:58 +0100
commit2d0a4182712673d8f7a5abe919cd2a1d5ece4a77 (patch)
treeb4ce96e837ac0ff56bbf39a4b9450329ad893272 /sd
parent9db70dfdc8d1851415f9d90fc192551178973f43 (diff)
Fix missing param for screenshotting SdTabPageDialog
Change-Id: I8f467c9e72811cb6d7f015f7d7d9a944882d48ec Reviewed-on: https://gerrit.libreoffice.org/81820 Tested-by: Jenkins Reviewed-by: Muhammet Kara <muhammet.kara@collabora.com>
Diffstat (limited to 'sd')
-rw-r--r--sd/qa/unit/dialogs-test.cxx4
1 files changed, 2 insertions, 2 deletions
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<VclAbstractDialog> 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: