diff options
author | Gabor Kelemen <kelemeng@ubuntu.com> | 2018-07-28 17:43:23 +0200 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.co.uk> | 2018-08-02 10:39:00 +0200 |
commit | bd8320952522165ee7f5f6cbe2675ea674ec5749 (patch) | |
tree | c0574742c59a06239a4a8be681ddadac50531f5c /svx/source/dialog | |
parent | 1e9f594f7eb4a813c3a566114198632352a163d8 (diff) |
Add missing sal/log.hxx headers
rtl/string.hxx and rtl/ustring.hxx both unnecessarily #include <sal/log.hxx> (and don't make use of it themselves), but many other files happen to depend on it.
This is a continuation of commit 6ff2d84ade299cb3d14d4110e4cf1a4b8070c030 to be able to remove those unneeded includes.
This commit adds missing headers to every file found by:
grep -FwL sal/log.hxx $(git grep -Elw 'SAL_INFO|SAL_INFO_IF|SAL_WARN|SAL_WARN_IF|SAL_DETAIL_LOG_STREAM|SAL_WHERE|SAL_STREAM|SAL_DEBUG')
to directories from stoc to svx
Change-Id: If562b1aa1d676d2c1cf513e953238abbb846c65c
Reviewed-on: https://gerrit.libreoffice.org/58224
Tested-by: Jenkins
Reviewed-by: Miklos Vajna <vmiklos@collabora.co.uk>
Diffstat (limited to 'svx/source/dialog')
-rw-r--r-- | svx/source/dialog/dlgutil.cxx | 1 | ||||
-rw-r--r-- | svx/source/dialog/frmsel.cxx | 1 | ||||
-rw-r--r-- | svx/source/dialog/langbox.cxx | 1 | ||||
-rw-r--r-- | svx/source/dialog/rlrcitem.cxx | 1 | ||||
-rw-r--r-- | svx/source/dialog/rulritem.cxx | 1 | ||||
-rw-r--r-- | svx/source/dialog/txencbox.cxx | 1 |
6 files changed, 6 insertions, 0 deletions
diff --git a/svx/source/dialog/dlgutil.cxx b/svx/source/dialog/dlgutil.cxx index 30f670884c10..09649e10ab60 100644 --- a/svx/source/dialog/dlgutil.cxx +++ b/svx/source/dialog/dlgutil.cxx @@ -25,6 +25,7 @@ #include <svl/eitem.hxx> #include <sfx2/viewfrm.hxx> #include <sfx2/objsh.hxx> +#include <sal/log.hxx> FieldUnit GetModuleFieldUnit( const SfxItemSet& rSet ) diff --git a/svx/source/dialog/frmsel.cxx b/svx/source/dialog/frmsel.cxx index 05f7729ab805..fd1e7ddab1ed 100644 --- a/svx/source/dialog/frmsel.cxx +++ b/svx/source/dialog/frmsel.cxx @@ -19,6 +19,7 @@ #include <svx/frmsel.hxx> #include <vcl/builderfactory.hxx> +#include <sal/log.hxx> #include <algorithm> #include <math.h> diff --git a/svx/source/dialog/langbox.cxx b/svx/source/dialog/langbox.cxx index 94b2aeccd0fa..7c9511cff437 100644 --- a/svx/source/dialog/langbox.cxx +++ b/svx/source/dialog/langbox.cxx @@ -21,6 +21,7 @@ #include <com/sun/star/i18n/ScriptType.hpp> #include <linguistic/misc.hxx> #include <rtl/ustring.hxx> +#include <sal/log.hxx> #include <unotools/localedatawrapper.hxx> #include <tools/urlobj.hxx> #include <svtools/langtab.hxx> diff --git a/svx/source/dialog/rlrcitem.cxx b/svx/source/dialog/rlrcitem.cxx index 9753beffdd1f..1664b93abb20 100644 --- a/svx/source/dialog/rlrcitem.cxx +++ b/svx/source/dialog/rlrcitem.cxx @@ -18,6 +18,7 @@ */ #include <svl/rectitem.hxx> +#include <sal/log.hxx> #include <svx/svxids.hrc> diff --git a/svx/source/dialog/rulritem.cxx b/svx/source/dialog/rulritem.cxx index cbe2dcc731be..e7f0765cb737 100644 --- a/svx/source/dialog/rulritem.cxx +++ b/svx/source/dialog/rulritem.cxx @@ -21,6 +21,7 @@ #include <svx/rulritem.hxx> #include <tools/mapunit.hxx> #include <osl/diagnose.h> +#include <sal/log.hxx> #include <com/sun/star/awt/Rectangle.hpp> #include <com/sun/star/frame/status/LeftRightMargin.hpp> #include <com/sun/star/frame/status/UpperLowerMargin.hpp> diff --git a/svx/source/dialog/txencbox.cxx b/svx/source/dialog/txencbox.cxx index b4e446aeee3f..9760215ff966 100644 --- a/svx/source/dialog/txencbox.cxx +++ b/svx/source/dialog/txencbox.cxx @@ -32,6 +32,7 @@ #include <rtl/tencinfo.h> #include <rtl/locale.h> #include <rtl/strbuf.hxx> +#include <sal/log.hxx> #include <osl/nlsupport.h> #include <txenctab.hrc> |