diff options
author | Gabor Kelemen <kelemen.gabor2@nisz.hu> | 2019-08-24 20:40:21 +0200 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.com> | 2019-08-28 09:29:37 +0200 |
commit | 55402d82c5a81322ff7bca3c277a8813bd967a09 (patch) | |
tree | bf3d5a9e0b91cabcdf01cf5dbdc82adc2ee05938 /vcl/source/window/errinf.cxx | |
parent | 001a5c47353cc87ce4f1d65d2e190e003e727d9e (diff) |
tdf#42949 Fix IWYU warnings in vcl/source/[o-w]*/
Plus a quick recheck for files in vcl/source/[a-g]*/
Found with bin/find-unneeded-includes
Only removal proposals are dealt with here.
Change-Id: Ia1ae951047be2e034da5f3b0422613ddb0a091ad
Reviewed-on: https://gerrit.libreoffice.org/78065
Tested-by: Jenkins
Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
Diffstat (limited to 'vcl/source/window/errinf.cxx')
-rw-r--r-- | vcl/source/window/errinf.cxx | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/vcl/source/window/errinf.cxx b/vcl/source/window/errinf.cxx index bdc5aa16c6c6..f1e9109f5afb 100644 --- a/vcl/source/window/errinf.cxx +++ b/vcl/source/window/errinf.cxx @@ -18,15 +18,14 @@ */ #include <osl/diagnose.h> -#include <rtl/strbuf.hxx> +#include <rtl/instance.hxx> #include <sal/log.hxx> #include <tools/debug.hxx> #include <vcl/errinf.hxx> -#include <vcl/window.hxx> +#include <algorithm> #include <vector> -#include <limits.h> class ErrorHandler; class TheErrorRegistry: public rtl::Static<ErrorRegistry, TheErrorRegistry> {}; |