sd/qa/unit/dialogs-test.cxx |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 2d0a4182712673d8f7a5abe919cd2a1d5ece4a77
Author:     Muhammet Kara <muhammet.k...@collabora.com>
AuthorDate: Thu Oct 31 09:19:00 2019 +0300
Commit:     Muhammet Kara <muhammet.k...@collabora.com>
CommitDate: Thu Oct 31 09:37:58 2019 +0100

    Fix missing param for screenshotting SdTabPageDialog
    
    Change-Id: I8f467c9e72811cb6d7f015f7d7d9a944882d48ec
    Reviewed-on: https://gerrit.libreoffice.org/81820
    Tested-by: Jenkins
    Reviewed-by: Muhammet Kara <muhammet.k...@collabora.com>

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:
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to