diff options
author | Gabor Kelemen <kelemeng@ubuntu.com> | 2018-12-31 20:22:02 +0100 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.com> | 2019-01-15 11:54:11 +0100 |
commit | cec7ae9f3c69ecc83462f28fc4987e37dc1b420e (patch) | |
tree | e0554c836821251f174760ce2b9b5674636a2b59 /svtools | |
parent | e69c7cc46ef5a100d9581b7efb01ab4a868d1924 (diff) |
tdf#42949 Fix IWYU warnings in include/toolkit/*
Found with bin/find-unneeded-includes
Only removal proposals are dealt with here.
Change-Id: Icebcf1a6ab073dce935a74ce79ee0f302b62e8a8
Reviewed-on: https://gerrit.libreoffice.org/65947
Tested-by: Jenkins
Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
Diffstat (limited to 'svtools')
-rw-r--r-- | svtools/source/graphic/renderer.cxx | 1 | ||||
-rw-r--r-- | svtools/source/hatchwindow/hatchwindow.cxx | 1 | ||||
-rw-r--r-- | svtools/source/hatchwindow/ipwin.cxx | 1 | ||||
-rw-r--r-- | svtools/source/inc/unoiface.hxx | 2 | ||||
-rw-r--r-- | svtools/source/misc/embedhlp.cxx | 1 | ||||
-rw-r--r-- | svtools/source/uno/svtxgridcontrol.cxx | 1 | ||||
-rw-r--r-- | svtools/source/uno/treecontrolpeer.cxx | 1 |
7 files changed, 7 insertions, 1 deletions
diff --git a/svtools/source/graphic/renderer.cxx b/svtools/source/graphic/renderer.cxx index 5d00257768e6..e39b860e3649 100644 --- a/svtools/source/graphic/renderer.cxx +++ b/svtools/source/graphic/renderer.cxx @@ -36,6 +36,7 @@ #include <rtl/ref.hxx> #include <svl/itemprop.hxx> #include <vcl/GraphicObject.hxx> +#include <vcl/outdev.hxx> #define UNOGRAPHIC_DEVICE 1 #define UNOGRAPHIC_DESTINATIONRECT 2 diff --git a/svtools/source/hatchwindow/hatchwindow.cxx b/svtools/source/hatchwindow/hatchwindow.cxx index 02a0c8a09780..c2b9216a2863 100644 --- a/svtools/source/hatchwindow/hatchwindow.cxx +++ b/svtools/source/hatchwindow/hatchwindow.cxx @@ -26,6 +26,7 @@ #include <toolkit/helper/convert.hxx> #include <cppuhelper/queryinterface.hxx> #include <osl/mutex.hxx> +#include <osl/diagnose.h> #include <vcl/svapp.hxx> using namespace ::com::sun::star; diff --git a/svtools/source/hatchwindow/ipwin.cxx b/svtools/source/hatchwindow/ipwin.cxx index bcbe6d7805e2..7c4b0cf318df 100644 --- a/svtools/source/hatchwindow/ipwin.cxx +++ b/svtools/source/hatchwindow/ipwin.cxx @@ -19,6 +19,7 @@ #include <com/sun/star/accessibility/AccessibleRole.hpp> +#include <osl/diagnose.h> #include <vcl/event.hxx> #include <vcl/svapp.hxx> #include <vcl/settings.hxx> diff --git a/svtools/source/inc/unoiface.hxx b/svtools/source/inc/unoiface.hxx index 1e4a10b82dc7..049cab08dfa1 100644 --- a/svtools/source/inc/unoiface.hxx +++ b/svtools/source/inc/unoiface.hxx @@ -26,9 +26,11 @@ #include <cppuhelper/typeprovider.hxx> +#include <com/sun/star/awt/XProgressBar.hpp> #include <com/sun/star/awt/XTextArea.hpp> #include <com/sun/star/awt/XTextComponent.hpp> #include <com/sun/star/awt/XTextLayoutConstrains.hpp> +#include <com/sun/star/beans/XPropertyChangeListener.hpp> #include <svtools/svmedit.hxx> #include <vcl/fmtfield.hxx> diff --git a/svtools/source/misc/embedhlp.cxx b/svtools/source/misc/embedhlp.cxx index 2da0c1a1255d..29878846dc20 100644 --- a/svtools/source/misc/embedhlp.cxx +++ b/svtools/source/misc/embedhlp.cxx @@ -21,6 +21,7 @@ #include <svtools/embedhlp.hxx> #include <vcl/graphicfilter.hxx> #include <vcl/gdimtf.hxx> +#include <vcl/outdev.hxx> #include <bitmaps.hlst> #include <sal/log.hxx> diff --git a/svtools/source/uno/svtxgridcontrol.cxx b/svtools/source/uno/svtxgridcontrol.cxx index 5841480b5f7d..4c556201eb5e 100644 --- a/svtools/source/uno/svtxgridcontrol.cxx +++ b/svtools/source/uno/svtxgridcontrol.cxx @@ -64,7 +64,6 @@ using css::awt::grid::XGridColumn; using css::container::ContainerEvent; using css::awt::grid::GridDataEvent; using css::awt::grid::GridInvalidModelException; -using css::util::VetoException; namespace AccessibleEventId = css::accessibility::AccessibleEventId; namespace AccessibleStateType = css::accessibility::AccessibleStateType; diff --git a/svtools/source/uno/treecontrolpeer.cxx b/svtools/source/uno/treecontrolpeer.cxx index f38861d4442b..506cfd84801a 100644 --- a/svtools/source/uno/treecontrolpeer.cxx +++ b/svtools/source/uno/treecontrolpeer.cxx @@ -23,6 +23,7 @@ #include <com/sun/star/lang/XServiceInfo.hpp> #include <com/sun/star/lang/DisposedException.hpp> #include <com/sun/star/view/SelectionType.hpp> +#include <com/sun/star/util/VetoException.hpp> #include <o3tl/any.hxx> #include <toolkit/helper/property.hxx> #include <toolkit/helper/vclunohelper.hxx> |