diff options
author | Gabor Kelemen <kelemeng@ubuntu.com> | 2018-07-31 19:58:50 +0200 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.co.uk> | 2018-08-03 09:43:04 +0200 |
commit | 4760bc9916cb726321bf4506bb48a26cfb239753 (patch) | |
tree | 2048928f9bc83e25bab028abbfb24d04c6d60bea /sw/source/uibase/dbui | |
parent | 28fa64612a3b4b9496da68ba83b54bbd80b75eaa (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 directory sw
Change-Id: I1ede3f86e390bfec1a2d3ee8e8bb6ec67083b194
Reviewed-on: https://gerrit.libreoffice.org/58372
Tested-by: Jenkins
Reviewed-by: Miklos Vajna <vmiklos@collabora.co.uk>
Diffstat (limited to 'sw/source/uibase/dbui')
-rw-r--r-- | sw/source/uibase/dbui/mmconfigitem.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sw/source/uibase/dbui/mmconfigitem.cxx b/sw/source/uibase/dbui/mmconfigitem.cxx index 7c46b9aa45ea..5cba59440bc5 100644 --- a/sw/source/uibase/dbui/mmconfigitem.cxx +++ b/sw/source/uibase/dbui/mmconfigitem.cxx @@ -34,6 +34,7 @@ #include <com/sun/star/sdb/CommandType.hpp> #include <comphelper/sequence.hxx> #include <rtl/instance.hxx> +#include <sal/log.hxx> #include <unotools/configitem.hxx> #include <mailmergehelper.hxx> #include <swunohelper.hxx> |