diff options
author | Gabor Kelemen <kelemeng@ubuntu.com> | 2018-06-12 00:34:48 +0200 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.co.uk> | 2018-09-06 11:55:38 +0200 |
commit | c6a4c1a998bdf6c709b87fc60361f519c3213138 (patch) | |
tree | 367b29170f63f8d27adf308900189f6ed69f1738 /chart2/source/view/main/VButton.hxx | |
parent | 247d0795312fdb8b1bfc68bf9e0d33459dbfeb63 (diff) |
tdf#42949 Fix IWYU warnings in chart2/source/view/{axes,charttypes,main}/*hxx
Found with bin/find-unneeded-includes
Only removal proposals are dealt with here.
Change-Id: I33d3ac3edbda5e2a9958373123565e28210b55c8
Reviewed-on: https://gerrit.libreoffice.org/59956
Tested-by: Jenkins
Reviewed-by: Miklos Vajna <vmiklos@collabora.co.uk>
Diffstat (limited to 'chart2/source/view/main/VButton.hxx')
-rw-r--r-- | chart2/source/view/main/VButton.hxx | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/chart2/source/view/main/VButton.hxx b/chart2/source/view/main/VButton.hxx index 4d87b3db7342..d2616bb818c2 100644 --- a/chart2/source/view/main/VButton.hxx +++ b/chart2/source/view/main/VButton.hxx @@ -10,10 +10,15 @@ #ifndef INCLUDED_CHART2_SOURCE_VIEW_MAIN_VBUTTON_HXX #define INCLUDED_CHART2_SOURCE_VIEW_MAIN_VBUTTON_HXX -#include <com/sun/star/drawing/XShapes.hpp> -#include <com/sun/star/lang/XMultiServiceFactory.hpp> -#include <com/sun/star/beans/XPropertySet.hpp> #include <tools/color.hxx> +#include <com/sun/star/awt/Point.hpp> +#include <com/sun/star/awt/Size.hpp> +#include <com/sun/star/uno/Reference.hxx> + +namespace com { namespace sun { namespace star { namespace beans { class XPropertySet; } } } } +namespace com { namespace sun { namespace star { namespace drawing { class XShape; } } } } +namespace com { namespace sun { namespace star { namespace drawing { class XShapes; } } } } +namespace com { namespace sun { namespace star { namespace lang { class XMultiServiceFactory; } } } } namespace chart { |