diff options
author | Gabor Kelemen <kelemeng@ubuntu.com> | 2018-07-29 00:31:58 +0200 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.co.uk> | 2018-08-01 13:46:18 +0200 |
commit | 852ef6e2863405318db8a1dcd24666000ce60f2e (patch) | |
tree | dbf8b1db0651be7b1bb3d10f0cee74e9f1060187 /sc/qa/unit/helper | |
parent | ccc0986d9a1c4a90114a38c30fe778ee42c8a8b5 (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 sc
Change-Id: I988d7d3abaedfb32516a9db88815663bf54da46e
Reviewed-on: https://gerrit.libreoffice.org/58266
Tested-by: Jenkins
Reviewed-by: Miklos Vajna <vmiklos@collabora.co.uk>
Diffstat (limited to 'sc/qa/unit/helper')
-rw-r--r-- | sc/qa/unit/helper/qahelper.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sc/qa/unit/helper/qahelper.cxx b/sc/qa/unit/helper/qahelper.cxx index d414b1abfb96..73af82070253 100644 --- a/sc/qa/unit/helper/qahelper.cxx +++ b/sc/qa/unit/helper/qahelper.cxx @@ -22,6 +22,7 @@ #include <formula/errorcodes.hxx> #include <cppunit/Asserter.h> #include <cppunit/AdditionalMessage.h> +#include <sal/log.hxx> #include <orcus/csv_parser.hpp> |