[Libreoffice-commits] core.git: cui/source

Julien Nabet (via logerrit) logerrit at kemper.freedesktop.org
Thu Jul 23 12:51:35 UTC 2020


 cui/source/factory/dlgfact.cxx |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

New commits:
commit f8bef0470f35cb14d33be22c7dd5e90e5287fa0c
Author:     Julien Nabet <serval2412 at yahoo.fr>
AuthorDate: Thu Jul 23 13:33:14 2020 +0200
Commit:     Julien Nabet <serval2412 at yahoo.fr>
CommitDate: Thu Jul 23 14:50:56 2020 +0200

    Fix Android build, no extension dialog in this part
    
    Change-Id: If531bcc84eaa15642d9e304a05dac4484f34f511
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/99284
    Tested-by: Jenkins
    Reviewed-by: Julien Nabet <serval2412 at yahoo.fr>

diff --git a/cui/source/factory/dlgfact.cxx b/cui/source/factory/dlgfact.cxx
index d1cd0a14c9f5..8ebff9022b23 100644
--- a/cui/source/factory/dlgfact.cxx
+++ b/cui/source/factory/dlgfact.cxx
@@ -1691,7 +1691,8 @@ VclPtr<AbstractAdditionsDialog> AbstractDialogFactory_Impl::CreateAdditionsDialo
         std::make_unique<AdditionsDialog>(pParent, sAdditionsTag));
 #else
     (void) pParent;
-    return VclPtr<AbstractAdditionsDialog>(nullptr, sAdditionsTag);
+    (void) sAdditionsTag;
+    return VclPtr<AbstractAdditionsDialog>(nullptr);
 #endif
 }
 


More information about the Libreoffice-commits mailing list