diff options
author | Gabor Kelemen <kelemen.gabor2@nisz.hu> | 2019-06-10 12:30:21 +0200 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.com> | 2019-06-13 09:22:08 +0200 |
commit | b4c6ac332571ca054fabd3f7876d4c4b1b9df8bc (patch) | |
tree | 6cdf256ec3b9b18e6ad095bd25bd60474f35cb77 /vcl/opengl | |
parent | 9a18e4e0bfee4d29ee02258c70cc9edf4e7b086b (diff) |
tdf#42949 Fix IWYU warnings in vcl/inc/*
Platform-specific subdirs are left alone:
android, ios, osx, quartz, win
Found with bin/find-unneeded-includes
Only removal proposals are dealt with here.
Change-Id: Icbb906b7fbc960240c73c56d3dae2a78b06a0f53
Reviewed-on: https://gerrit.libreoffice.org/73754
Tested-by: Jenkins
Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
Diffstat (limited to 'vcl/opengl')
-rw-r--r-- | vcl/opengl/LineRenderUtils.cxx | 1 | ||||
-rw-r--r-- | vcl/opengl/gdiimpl.cxx | 1 | ||||
-rw-r--r-- | vcl/opengl/win/gdiimpl.cxx | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/vcl/opengl/LineRenderUtils.cxx b/vcl/opengl/LineRenderUtils.cxx index e62d884b3b6e..61d0dc38457c 100644 --- a/vcl/opengl/LineRenderUtils.cxx +++ b/vcl/opengl/LineRenderUtils.cxx @@ -9,6 +9,7 @@ */ #include <opengl/LineRenderUtils.hxx> +#include <opengl/VertexUtils.hxx> namespace vcl { diff --git a/vcl/opengl/gdiimpl.cxx b/vcl/opengl/gdiimpl.cxx index 9d42d03149a5..1914a4f6f60a 100644 --- a/vcl/opengl/gdiimpl.cxx +++ b/vcl/opengl/gdiimpl.cxx @@ -18,6 +18,7 @@ */ #include <openglgdiimpl.hxx> +#include <opengl/framebuffer.hxx> #include <vcl/gradient.hxx> #include <vcl/idle.hxx> diff --git a/vcl/opengl/win/gdiimpl.cxx b/vcl/opengl/win/gdiimpl.cxx index 2fbd40da73b2..b0d1188519c2 100644 --- a/vcl/opengl/win/gdiimpl.cxx +++ b/vcl/opengl/win/gdiimpl.cxx @@ -10,6 +10,7 @@ #include <memory> #include <thread> #include <opengl/win/gdiimpl.hxx> +#include <vcl/opengl/OpenGLHelper.hxx> #include <sal/log.hxx> #include <comphelper/windowserrorstring.hxx> |