diff options
author | Gabor Kelemen <kelemeng@ubuntu.com> | 2018-08-18 18:24:16 +0200 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.co.uk> | 2018-09-10 09:58:12 +0200 |
commit | cc7280efdbfefd96eb96b63dc8bd171d39704388 (patch) | |
tree | 76b0d516d033c5006ddb122f2d847fce20c9d93c /sfx2/source | |
parent | 433fce6571d4b9121374047324a7d2d2722ac3e4 (diff) |
tdf#42949 Fix IWYU warnings in include/cppuhelper/*
Found with bin/find-unneeded-includes
Only removal proposals are dealt with here.
Change-Id: Ib420e9216b8313f5ed7634ec375e39ceb741fd45
Reviewed-on: https://gerrit.libreoffice.org/59297
Tested-by: Jenkins
Reviewed-by: Miklos Vajna <vmiklos@collabora.co.uk>
Diffstat (limited to 'sfx2/source')
-rw-r--r-- | sfx2/source/appl/imestatuswindow.cxx | 1 | ||||
-rw-r--r-- | sfx2/source/appl/macroloader.cxx | 2 | ||||
-rw-r--r-- | sfx2/source/inc/macroloader.hxx | 1 |
3 files changed, 4 insertions, 0 deletions
diff --git a/sfx2/source/appl/imestatuswindow.cxx b/sfx2/source/appl/imestatuswindow.cxx index 0e5bb44445a9..c49107ba87ce 100644 --- a/sfx2/source/appl/imestatuswindow.cxx +++ b/sfx2/source/appl/imestatuswindow.cxx @@ -42,6 +42,7 @@ #include <sal/types.h> #include <vcl/svapp.hxx> #include <cppuhelper/implbase.hxx> +#include <cppuhelper/weakref.hxx> //TO-Do, merge into framework/inc/helpers/mischelpers.hxx and deliver class WeakPropertyChangeListener : public ::cppu::WeakImplHelper<css::beans::XPropertyChangeListener> diff --git a/sfx2/source/appl/macroloader.cxx b/sfx2/source/appl/macroloader.cxx index a910138908fd..1c32be75cd90 100644 --- a/sfx2/source/appl/macroloader.cxx +++ b/sfx2/source/appl/macroloader.cxx @@ -27,6 +27,8 @@ #include <basic/basmgr.hxx> #include <basic/sbuno.hxx> #include <cppuhelper/supportsservice.hxx> +#include <cppuhelper/weak.hxx> +#include <cppuhelper/weakref.hxx> #include <framework/documentundoguard.hxx> #include <rtl/ref.hxx> #include <sfx2/app.hxx> diff --git a/sfx2/source/inc/macroloader.hxx b/sfx2/source/inc/macroloader.hxx index 94fa5165fdd9..54decff36a37 100644 --- a/sfx2/source/inc/macroloader.hxx +++ b/sfx2/source/inc/macroloader.hxx @@ -36,6 +36,7 @@ #include <com/sun/star/util/URL.hpp> #include <cppuhelper/implbase.hxx> +#include <cppuhelper/weakref.hxx> #include <sfx2/sfxuno.hxx> #include <vcl/errcode.hxx> |