diff options
author | Mike Kaganski <mike.kaganski@collabora.com> | 2020-04-27 11:03:16 +0300 |
---|---|---|
committer | Mike Kaganski <mike.kaganski@collabora.com> | 2020-04-27 11:20:55 +0200 |
commit | 16f7f5de542392ef9cfbb2efd51dd8c570a829a7 (patch) | |
tree | 899071f127face0ecbe31ba78ab771923b4b2482 /vcl/source | |
parent | 0f03cf4a47ac0744c8d36d14ab2bf0d9623b19a4 (diff) |
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@collabora.com>
Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com>
Diffstat (limited to 'vcl/source')
-rw-r--r-- | vcl/source/app/svmain.cxx | 4 |
1 files changed, 4 insertions, 0 deletions
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> |