[Libreoffice-commits] core.git: vcl/source xmlsecurity/source

Mike Kaganski (via logerrit) logerrit at kemper.freedesktop.org
Mon Apr 27 09:21:31 UTC 2020


 vcl/source/app/svmain.cxx                                             |    4 ++++
 xmlsecurity/source/xmlsec/mscrypt/securityenvironment_mscryptimpl.cxx |    1 +
 2 files changed, 5 insertions(+)

New commits:
commit 16f7f5de542392ef9cfbb2efd51dd8c570a829a7
Author:     Mike Kaganski <mike.kaganski at collabora.com>
AuthorDate: Mon Apr 27 11:03:16 2020 +0300
Commit:     Mike Kaganski <mike.kaganski at collabora.com>
CommitDate: Mon Apr 27 11:20:55 2020 +0200

    Missing includes on Windows with --disable-pch
    
    ... since b512ce255f46d90e682634e4dd17e146af7f9080.
    Yes, MSVC also produces an error if the completeness requirements
    are not met.
    
    Change-Id: I0ad573ef1d14a383eed3a8f83aa932657c22ae20
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/92963
    Tested-by: Mike Kaganski <mike.kaganski at collabora.com>
    Reviewed-by: Mike Kaganski <mike.kaganski at collabora.com>

diff --git a/vcl/source/app/svmain.cxx b/vcl/source/app/svmain.cxx
index 9d861a5cadc6..e571c2f269c5 100644
--- a/vcl/source/app/svmain.cxx
+++ b/vcl/source/app/svmain.cxx
@@ -82,6 +82,10 @@
 #include <com/sun/star/lang/XComponent.hpp>
 #include <com/sun/star/frame/Desktop.hpp>
 
+#ifdef _WIN32
+#include <com/sun/star/datatransfer/clipboard/XClipboard.hpp>
+#endif
+
 #include <comphelper/lok.hxx>
 #include <cppuhelper/implbase.hxx>
 #include <uno/current_context.hxx>
diff --git a/xmlsecurity/source/xmlsec/mscrypt/securityenvironment_mscryptimpl.cxx b/xmlsecurity/source/xmlsec/mscrypt/securityenvironment_mscryptimpl.cxx
index 0434d0b9d2d9..01b27fb9756f 100644
--- a/xmlsecurity/source/xmlsec/mscrypt/securityenvironment_mscryptimpl.cxx
+++ b/xmlsecurity/source/xmlsec/mscrypt/securityenvironment_mscryptimpl.cxx
@@ -34,6 +34,7 @@
 #include "x509certificate_mscryptimpl.hxx"
 #include <comphelper/servicehelper.hxx>
 #include <com/sun/star/lang/XMultiServiceFactory.hpp>
+#include <com/sun/star/uno/XComponentContext.hpp>
 #include <cppuhelper/supportsservice.hxx>
 #include <xmlsec-wrapper.h>
 #include "akmngr.hxx"


More information about the Libreoffice-commits mailing list