diff options
author | Gabor Kelemen <kelemen.gabor2@nisz.hu> | 2019-03-10 19:34:35 +0100 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.com> | 2019-04-26 09:07:59 +0200 |
commit | 2460816491fe8593e8c7b13caf596383484b3031 (patch) | |
tree | 06b54b8007a2c67a6012b9e85fc44d13f1f557e5 /pyuno/source/loader/pyuno_loader.cxx | |
parent | ff17478e069cc82681df62514876c06365dd5cd6 (diff) |
tdf#42949 Fix IWYU warnings in pyuno/
Found with bin/find-unneeded-includes
Only removal proposals are dealt with here.
Change-Id: I95575d41a822ff7b1ac5bdba03057f6d3fa61b51
Reviewed-on: https://gerrit.libreoffice.org/71141
Tested-by: Jenkins
Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
Diffstat (limited to 'pyuno/source/loader/pyuno_loader.cxx')
-rw-r--r-- | pyuno/source/loader/pyuno_loader.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pyuno/source/loader/pyuno_loader.cxx b/pyuno/source/loader/pyuno_loader.cxx index c0844496a4a5..938d53814545 100644 --- a/pyuno/source/loader/pyuno_loader.cxx +++ b/pyuno/source/loader/pyuno_loader.cxx @@ -29,12 +29,13 @@ #include <osl/thread.h> #include <rtl/ustrbuf.hxx> -#include <rtl/strbuf.hxx> #include <rtl/bootstrap.hxx> #include <cppuhelper/implementationentry.hxx> #include <cppuhelper/factory.hxx> +#include <com/sun/star/uno/XComponentContext.hpp> + // apparently PATH_MAX is not standard and not defined by MSVC #ifndef PATH_MAX #ifdef _MAX_PATH @@ -48,7 +49,6 @@ #endif #endif - using pyuno::PyRef; using pyuno::NOT_NULL; using pyuno::Runtime; |