diff options
author | Gabor Kelemen <kelemen.gabor2@nisz.hu> | 2021-04-01 09:40:51 +0200 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.com> | 2021-04-09 11:56:36 +0200 |
commit | 2633d5f97ff45cc4a7f016bee1f2e8f92a60d2fb (patch) | |
tree | 248eafb1e97bf19315d698d1243c7f74dad40a09 /vcl | |
parent | 28a9a92105f3155d82fd9e31095efabd3ec706ea (diff) |
Recheck include/ with IWYU
See tdf#42949 for motivation
Change-Id: Ifc253bf800bb1468b5774663a93f4fb30bec81d3
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/113657
Tested-by: Jenkins
Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/qt5/Qt5OpenGLContext.cxx | 2 | ||||
-rw-r--r-- | vcl/source/app/salvtables.cxx | 1 | ||||
-rw-r--r-- | vcl/source/app/unohelp2.cxx | 3 |
3 files changed, 6 insertions, 0 deletions
diff --git a/vcl/qt5/Qt5OpenGLContext.cxx b/vcl/qt5/Qt5OpenGLContext.cxx index a33f7abde2f5..ca2ec48d1d4c 100644 --- a/vcl/qt5/Qt5OpenGLContext.cxx +++ b/vcl/qt5/Qt5OpenGLContext.cxx @@ -19,6 +19,8 @@ #include <Qt5OpenGLContext.hxx> +#include <epoxy/gl.h> + #include <vcl/sysdata.hxx> #include <opengl/zone.hxx> #include <sal/log.hxx> diff --git a/vcl/source/app/salvtables.cxx b/vcl/source/app/salvtables.cxx index b185c0f00836..f1d1a1a88292 100644 --- a/vcl/source/app/salvtables.cxx +++ b/vcl/source/app/salvtables.cxx @@ -24,6 +24,7 @@ #include <com/sun/star/accessibility/AccessibleRelationType.hpp> #include <com/sun/star/awt/XWindow.hpp> #include <com/sun/star/awt/XWindowPeer.hpp> +#include <o3tl/safeint.hxx> #include <o3tl/sorted_vector.hxx> #include <officecfg/Office/Common.hxx> #include <salframe.hxx> diff --git a/vcl/source/app/unohelp2.cxx b/vcl/source/app/unohelp2.cxx index ab53a4c7f27f..47cfab4bcf9d 100644 --- a/vcl/source/app/unohelp2.cxx +++ b/vcl/source/app/unohelp2.cxx @@ -26,6 +26,9 @@ #include <com/sun/star/datatransfer/clipboard/XClipboard.hpp> #include <com/sun/star/datatransfer/clipboard/XFlushableClipboard.hpp> #include <cppuhelper/queryinterface.hxx> +#include <boost/property_tree/json_parser.hpp> +#include <comphelper/lok.hxx> +#include <LibreOfficeKit/LibreOfficeKitEnums.h> using namespace ::com::sun::star; |