diff options
author | Gabor Kelemen <kelemeng@ubuntu.com> | 2018-05-28 20:58:09 +0200 |
---|---|---|
committer | Jochen Nitschke <j.nitschke+logerrit@ok.de> | 2018-06-13 17:27:48 +0200 |
commit | 0554e74260ee684d0859d655e42da8ad6eefd4a9 (patch) | |
tree | 800e4555a90f779a5a52a9ff3d9a383302ae5994 /chart2/source/controller/inc/RangeSelectionHelper.hxx | |
parent | 5db29ca06b56bb235b0e8dfd0956715730f9cf0d (diff) |
tdf#42949 Fix IWYU warnings in chart2/source/controller/inc/[I-V]*
Found with bin/find-unneeded-includes
Only removal proposals are dealt with here.
A bit of fallout management as well.
Change-Id: Ie058eac6608d7c6dc2cfb29f1081b6684a4412ac
Reviewed-on: https://gerrit.libreoffice.org/55541
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Jochen Nitschke <j.nitschke+logerrit@ok.de>
Diffstat (limited to 'chart2/source/controller/inc/RangeSelectionHelper.hxx')
-rw-r--r-- | chart2/source/controller/inc/RangeSelectionHelper.hxx | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/chart2/source/controller/inc/RangeSelectionHelper.hxx b/chart2/source/controller/inc/RangeSelectionHelper.hxx index 0b2ab7153e52..e1f69777b6c9 100644 --- a/chart2/source/controller/inc/RangeSelectionHelper.hxx +++ b/chart2/source/controller/inc/RangeSelectionHelper.hxx @@ -19,14 +19,17 @@ #ifndef INCLUDED_CHART2_SOURCE_CONTROLLER_INC_RANGESELECTIONHELPER_HXX #define INCLUDED_CHART2_SOURCE_CONTROLLER_INC_RANGESELECTIONHELPER_HXX -#include <com/sun/star/chart2/XChartDocument.hpp> -#include <com/sun/star/beans/PropertyValue.hpp> +#include <com/sun/star/uno/Reference.h> +#include <com/sun/star/uno/Sequence.h> +#include <rtl/ustring.hxx> + +namespace com { namespace sun { namespace star { namespace beans { struct PropertyValue; } } } } +namespace com { namespace sun { namespace star { namespace chart2 { class XChartDocument; } } } } namespace com { namespace sun { namespace star { namespace sheet{ class XRangeSelection; class XRangeSelectionListener; - class XCellRangesAccess; } }}} |