diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2020-01-15 17:02:03 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2020-01-15 18:54:41 +0100 |
commit | 196b41e8f1fb3fd1bf052f4b01b5630d15e07141 (patch) | |
tree | 05a873578ab1cec3986cbce760330ecb917a6409 /sfx2 | |
parent | 05d833a26208404e5f2b3d61298a57c9bcc7c1fe (diff) |
Missing includes (Windows --disable-pch)
...after f7804fc28bc65de4938d67d6f8a19f1eacab3341 "tdf#42949 Fix IWYU warnings
in sfx2/source/[d-n]*/*cxx"
Change-Id: I3dc8fbfb353daec980fc0a73809fc2cd83972d2d
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/86866
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'sfx2')
-rw-r--r-- | sfx2/source/doc/graphhelp.cxx | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/sfx2/source/doc/graphhelp.cxx b/sfx2/source/doc/graphhelp.cxx index e5abf0c6c6d9..385b075f8b29 100644 --- a/sfx2/source/doc/graphhelp.cxx +++ b/sfx2/source/doc/graphhelp.cxx @@ -45,6 +45,11 @@ #include <memory> +#if defined _WIN32 +#include <unotools/tempfile.hxx> +#include <vcl/outdev.hxx> +#endif + using namespace css; std::unique_ptr<SvMemoryStream> GraphicHelper::getFormatStrFromGDI_Impl( const GDIMetaFile* pGDIMeta, ConvertDataFormat nFormat ) |