diff options
author | Gabor Kelemen <kelemen.gabor2@nisz.hu> | 2020-11-29 22:26:58 +0100 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.com> | 2020-12-01 14:56:43 +0100 |
commit | 107399d684bae9e58f5e4020f15eb8a689f1db82 (patch) | |
tree | d4acfa1fab53bf624a245f893fcca6221b56230c /svl/source/items | |
parent | 9c94bae963ef5019f6ca0394d076b1288969aa53 (diff) |
tdf#42949 Fix new IWYU warnings in directories s*
Except recently checked sc, sd, svx, sw
Found with bin/find-unneeded-includes
Only removal proposals are dealt with here.
Change-Id: Ice1b86628e4f22a39f307b9c5fa567b6ab9d5acb
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/106917
Tested-by: Jenkins
Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
Diffstat (limited to 'svl/source/items')
-rw-r--r-- | svl/source/items/aeitem.cxx | 3 | ||||
-rw-r--r-- | svl/source/items/intitem.cxx | 2 | ||||
-rw-r--r-- | svl/source/items/itempool.cxx | 2 | ||||
-rw-r--r-- | svl/source/items/poolio.cxx | 1 | ||||
-rw-r--r-- | svl/source/items/poolitem.cxx | 2 | ||||
-rw-r--r-- | svl/source/items/style.cxx | 2 |
6 files changed, 2 insertions, 10 deletions
diff --git a/svl/source/items/aeitem.cxx b/svl/source/items/aeitem.cxx index 7c85153b63a8..9f169c5bd032 100644 --- a/svl/source/items/aeitem.cxx +++ b/svl/source/items/aeitem.cxx @@ -20,9 +20,6 @@ #include <rtl/ustring.hxx> #include <svl/aeitem.hxx> -#include <climits> -#include <cstddef> - SfxAllEnumItem::SfxAllEnumItem(sal_uInt16 which): SfxPoolItem(which) { diff --git a/svl/source/items/intitem.cxx b/svl/source/items/intitem.cxx index 072de0501f40..e3850c8bf5a1 100644 --- a/svl/source/items/intitem.cxx +++ b/svl/source/items/intitem.cxx @@ -24,7 +24,7 @@ #include <tools/bigint.hxx> #include <svl/metitem.hxx> #include <libxml/xmlwriter.h> -#include <boost/property_tree/json_parser.hpp> +#include <boost/property_tree/ptree.hpp> diff --git a/svl/source/items/itempool.cxx b/svl/source/items/itempool.cxx index 6deec84947c0..44c0cf534b5d 100644 --- a/svl/source/items/itempool.cxx +++ b/svl/source/items/itempool.cxx @@ -22,7 +22,6 @@ #include <string.h> #include <libxml/xmlwriter.h> -#include <tools/solar.h> #include <osl/diagnose.h> #include <sal/log.hxx> #include <svl/SfxBroadcaster.hxx> @@ -30,7 +29,6 @@ #include <svl/itemset.hxx> #include <poolio.hxx> -#include <algorithm> #include <cassert> #include <vector> diff --git a/svl/source/items/poolio.cxx b/svl/source/items/poolio.cxx index 313c431e9866..14613824eae4 100644 --- a/svl/source/items/poolio.cxx +++ b/svl/source/items/poolio.cxx @@ -22,7 +22,6 @@ #include <sal/log.hxx> #include <svl/itempool.hxx> -#include <algorithm> #include <memory> /// clear array of PoolItem variants diff --git a/svl/source/items/poolitem.cxx b/svl/source/items/poolitem.cxx index a115605f5c78..6cd15433e8b3 100644 --- a/svl/source/items/poolitem.cxx +++ b/svl/source/items/poolitem.cxx @@ -23,7 +23,7 @@ #include <osl/diagnose.h> #include <libxml/xmlwriter.h> #include <typeinfo> -#include <boost/property_tree/json_parser.hpp> +#include <boost/property_tree/ptree.hpp> ////////////////////////////////////////////////////////////////////////////// // list of classes derived from SfxPoolItem diff --git a/svl/source/items/style.cxx b/svl/source/items/style.cxx index 2d7eaf3c222f..617b42e41cdc 100644 --- a/svl/source/items/style.cxx +++ b/svl/source/items/style.cxx @@ -35,8 +35,6 @@ #include <comphelper/servicehelper.hxx> #include <rtl/ustrbuf.hxx> -#include <string.h> - #ifdef DBG_UTIL namespace { |