diff options
author | Gabor Kelemen <kelemeng@ubuntu.com> | 2018-12-03 18:58:38 +0100 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.com> | 2018-12-10 14:19:50 +0100 |
commit | 00b49f9ff9777cb1c1e971feec55b2448fba8be2 (patch) | |
tree | f10cc2251c4950f12673d3ed342702093141f668 /sc | |
parent | 0005b330eaed0b5559042d2597fb45e0c9125d7e (diff) |
tdf#42949 Fix IWYU warnings in include/vcl/s*
Found with bin/find-unneeded-includes
Only removal proposals are dealt with here.
Change-Id: Ie87d27dd2c385a63349e0b322fd067ba03d2d152
Reviewed-on: https://gerrit.libreoffice.org/64479
Tested-by: Jenkins
Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/core/data/documen3.cxx | 1 | ||||
-rw-r--r-- | sc/source/core/tool/optutil.cxx | 2 | ||||
-rw-r--r-- | sc/source/ui/Accessibility/AccessibleContextBase.cxx | 1 | ||||
-rw-r--r-- | sc/source/ui/dbgui/textimportoptions.cxx | 1 | ||||
-rw-r--r-- | sc/source/ui/miscdlgs/anyrefdg.cxx | 1 | ||||
-rw-r--r-- | sc/source/ui/sidebar/AlignmentPropertyPanel.cxx | 1 | ||||
-rw-r--r-- | sc/source/ui/view/hintwin.cxx | 1 |
7 files changed, 7 insertions, 1 deletions
diff --git a/sc/source/core/data/documen3.cxx b/sc/source/core/data/documen3.cxx index 615f79d85f9f..633ca5835113 100644 --- a/sc/source/core/data/documen3.cxx +++ b/sc/source/core/data/documen3.cxx @@ -27,6 +27,7 @@ #include <sfx2/objsh.hxx> #include <sfx2/viewsh.hxx> #include <vcl/svapp.hxx> +#include <osl/thread.hxx> #include <document.hxx> #include <attrib.hxx> #include <table.hxx> diff --git a/sc/source/core/tool/optutil.cxx b/sc/source/core/tool/optutil.cxx index 9edad85bf779..1b2ed90d0e0c 100644 --- a/sc/source/core/tool/optutil.cxx +++ b/sc/source/core/tool/optutil.cxx @@ -18,11 +18,11 @@ */ #include <vcl/svapp.hxx> - #include <optutil.hxx> #include <global.hxx> #include <unotools/configmgr.hxx> #include <unotools/syslocale.hxx> +#include <unotools/localedatawrapper.hxx> bool ScOptionsUtil::IsMetricSystem() { diff --git a/sc/source/ui/Accessibility/AccessibleContextBase.cxx b/sc/source/ui/Accessibility/AccessibleContextBase.cxx index ad0ebba97ad8..3577a57f839d 100644 --- a/sc/source/ui/Accessibility/AccessibleContextBase.cxx +++ b/sc/source/ui/Accessibility/AccessibleContextBase.cxx @@ -24,6 +24,7 @@ #include <com/sun/star/accessibility/IllegalAccessibleComponentStateException.hpp> #include <com/sun/star/beans/PropertyChangeEvent.hpp> #include <tools/gen.hxx> +#include <tools/color.hxx> #include <unotools/accessiblestatesethelper.hxx> #include <toolkit/helper/convert.hxx> #include <svl/hint.hxx> diff --git a/sc/source/ui/dbgui/textimportoptions.cxx b/sc/source/ui/dbgui/textimportoptions.cxx index 8d81f967f972..b0cc1a375a43 100644 --- a/sc/source/ui/dbgui/textimportoptions.cxx +++ b/sc/source/ui/dbgui/textimportoptions.cxx @@ -23,6 +23,7 @@ #include <vcl/svapp.hxx> #include <vcl/window.hxx> #include <vcl/settings.hxx> +#include <i18nlangtag/languagetag.hxx> ScTextImportOptionsDlg::ScTextImportOptionsDlg(vcl::Window* pParent) : ModalDialog(pParent, "TextImportOptionsDialog", "modules/scalc/ui/textimportoptions.ui") diff --git a/sc/source/ui/miscdlgs/anyrefdg.cxx b/sc/source/ui/miscdlgs/anyrefdg.cxx index 54a0be8869b8..64b00df333ad 100644 --- a/sc/source/ui/miscdlgs/anyrefdg.cxx +++ b/sc/source/ui/miscdlgs/anyrefdg.cxx @@ -21,6 +21,7 @@ #include <comphelper/string.hxx> #include <sfx2/app.hxx> #include <sfx2/viewsh.hxx> +#include <vcl/accel.hxx> #include <vcl/wrkwin.hxx> #include <vcl/mnemonic.hxx> #include <sfx2/bindings.hxx> diff --git a/sc/source/ui/sidebar/AlignmentPropertyPanel.cxx b/sc/source/ui/sidebar/AlignmentPropertyPanel.cxx index 6955fa47d2b5..e622626f69f9 100644 --- a/sc/source/ui/sidebar/AlignmentPropertyPanel.cxx +++ b/sc/source/ui/sidebar/AlignmentPropertyPanel.cxx @@ -29,6 +29,7 @@ #include <svx/dlgutil.hxx> #include <vcl/toolbox.hxx> #include <svx/sidebar/SidebarDialControl.hxx> +#include <unotools/localedatawrapper.hxx> using namespace css; using namespace css::uno; diff --git a/sc/source/ui/view/hintwin.cxx b/sc/source/ui/view/hintwin.cxx index 1d53dbdacc7e..a7fb47a2a339 100644 --- a/sc/source/ui/view/hintwin.cxx +++ b/sc/source/ui/view/hintwin.cxx @@ -36,6 +36,7 @@ #include <tools/lineend.hxx> #include <svtools/colorcfg.hxx> #include <vcl/settings.hxx> +#include <vcl/metric.hxx> #define HINT_LINESPACE 2 #define HINT_INDENT 3 |