diff options
author | Gabor Kelemen <kelemeng@ubuntu.com> | 2018-11-12 20:55:41 +0100 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.com> | 2018-11-19 09:38:53 +0100 |
commit | 492ea7e08571e466e37f870b7642a79df55c2e92 (patch) | |
tree | 902686cce366dc110cb46d8164b22658235c575e /starmath/source | |
parent | 50e644253f78ab002f180fb8e82ca181b95cb7ff (diff) |
tdf#42949 Fix IWYU warnings in include/vcl/[ab]*
Found with bin/find-unneeded-includes
Only removal proposals are dealt with here.
Change-Id: If18c80fc64e55d797953e24e40e5d5e62bd9c625
Reviewed-on: https://gerrit.libreoffice.org/63453
Tested-by: Jenkins
Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
Diffstat (limited to 'starmath/source')
-rw-r--r-- | starmath/source/cfgitem.cxx | 1 | ||||
-rw-r--r-- | starmath/source/node.cxx | 1 | ||||
-rw-r--r-- | starmath/source/parse.cxx | 1 | ||||
-rw-r--r-- | starmath/source/rtfexport.cxx | 1 | ||||
-rw-r--r-- | starmath/source/symbol.cxx | 1 | ||||
-rw-r--r-- | starmath/source/wordexportbase.cxx | 1 |
6 files changed, 6 insertions, 0 deletions
diff --git a/starmath/source/cfgitem.cxx b/starmath/source/cfgitem.cxx index 29688315f17e..e5c86e05ca53 100644 --- a/starmath/source/cfgitem.cxx +++ b/starmath/source/cfgitem.cxx @@ -30,6 +30,7 @@ #include <vcl/svapp.hxx> #include <vcl/settings.hxx> #include <sal/log.hxx> +#include <osl/diagnose.h> #include <officecfg/Office/Math.hxx> #include "cfgitem.hxx" diff --git a/starmath/source/node.cxx b/starmath/source/node.cxx index c9672e22e942..2eba1f5c58f1 100644 --- a/starmath/source/node.cxx +++ b/starmath/source/node.cxx @@ -33,6 +33,7 @@ #include <tools/gen.hxx> #include <vcl/outdev.hxx> #include <sal/log.hxx> +#include <osl/diagnose.h> #include <cassert> #include <math.h> diff --git a/starmath/source/parse.cxx b/starmath/source/parse.cxx index 7c092b64fe1e..3cd64af729db 100644 --- a/starmath/source/parse.cxx +++ b/starmath/source/parse.cxx @@ -28,6 +28,7 @@ #include <unotools/syslocale.hxx> #include <o3tl/make_unique.hxx> #include <sal/log.hxx> +#include <osl/diagnose.h> #include <rtl/character.hxx> #include <parse.hxx> #include <strings.hrc> diff --git a/starmath/source/rtfexport.cxx b/starmath/source/rtfexport.cxx index 2ffbd1a83b13..2f3839c54a39 100644 --- a/starmath/source/rtfexport.cxx +++ b/starmath/source/rtfexport.cxx @@ -13,6 +13,7 @@ #include <svtools/rtfkeywd.hxx> #include <filter/msfilter/rtfutil.hxx> #include <sal/log.hxx> +#include <osl/diagnose.h> SmRtfExport::SmRtfExport(const SmNode* pIn) : SmWordExportBase(pIn) diff --git a/starmath/source/symbol.cxx b/starmath/source/symbol.cxx index cbe3b3b11ac0..cb0533c1b269 100644 --- a/starmath/source/symbol.cxx +++ b/starmath/source/symbol.cxx @@ -24,6 +24,7 @@ #include "cfgitem.hxx" #include <smmod.hxx> #include <sal/log.hxx> +#include <osl/diagnose.h> SmSym::SmSym() : diff --git a/starmath/source/wordexportbase.cxx b/starmath/source/wordexportbase.cxx index 2529bc997cd7..c660cf2b282d 100644 --- a/starmath/source/wordexportbase.cxx +++ b/starmath/source/wordexportbase.cxx @@ -10,6 +10,7 @@ #include "wordexportbase.hxx" #include <node.hxx> #include <sal/log.hxx> +#include <osl/diagnose.h> SmWordExportBase::SmWordExportBase(const SmNode* pIn) : m_pTree(pIn) |