diff options
author | Gabor Kelemen <kelemeng@ubuntu.com> | 2018-07-08 15:01:23 +0200 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.co.uk> | 2018-07-09 10:49:06 +0200 |
commit | 7af90cc93b76996f0f338c6a1285997531281e75 (patch) | |
tree | 5bcc07cf1cdcccc9b7b14ead80b3fbe46e179693 /basctl | |
parent | 432a935d4e178b4e1e54c2ec864cb5e05bb03d9b (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 a* to configmgr
Change-Id: I6ea1a7f992b1f835f5bac7a725e1135abee3f85a
Reviewed-on: https://gerrit.libreoffice.org/57170
Tested-by: Jenkins
Reviewed-by: Miklos Vajna <vmiklos@collabora.co.uk>
Diffstat (limited to 'basctl')
-rw-r--r-- | basctl/source/basicide/basides1.cxx | 1 | ||||
-rw-r--r-- | basctl/source/basicide/basobj2.cxx | 1 | ||||
-rw-r--r-- | basctl/source/basicide/basobj3.cxx | 1 | ||||
-rw-r--r-- | basctl/source/basicide/bastypes.cxx | 1 | ||||
-rw-r--r-- | basctl/source/basicide/sbxitem.cxx | 1 | ||||
-rw-r--r-- | basctl/source/basicide/scriptdocument.cxx | 1 | ||||
-rw-r--r-- | basctl/source/dlged/dlgedobj.cxx | 1 |
7 files changed, 7 insertions, 0 deletions
diff --git a/basctl/source/basicide/basides1.cxx b/basctl/source/basicide/basides1.cxx index 02110e9c2632..f3ee0773e6d1 100644 --- a/basctl/source/basicide/basides1.cxx +++ b/basctl/source/basicide/basides1.cxx @@ -34,6 +34,7 @@ #include <com/sun/star/script/ModuleType.hpp> #include <com/sun/star/script/XLibraryContainerPassword.hpp> #include <com/sun/star/frame/XLayoutManager.hpp> +#include <sal/log.hxx> #include <sfx2/childwin.hxx> #include <sfx2/docfac.hxx> #include <sfx2/dinfdlg.hxx> diff --git a/basctl/source/basicide/basobj2.cxx b/basctl/source/basicide/basobj2.cxx index 1b64d85aac28..24154047ac0a 100644 --- a/basctl/source/basicide/basobj2.cxx +++ b/basctl/source/basicide/basobj2.cxx @@ -28,6 +28,7 @@ #include <basic/sbmeth.hxx> #include <framework/documentundoguard.hxx> +#include <sal/log.hxx> #include <tools/diagnose_ex.h> #include <unotools/moduleoptions.hxx> #include <vcl/weld.hxx> diff --git a/basctl/source/basicide/basobj3.cxx b/basctl/source/basicide/basobj3.cxx index 8f3c0d562782..3ac49d89e2aa 100644 --- a/basctl/source/basicide/basobj3.cxx +++ b/basctl/source/basicide/basobj3.cxx @@ -34,6 +34,7 @@ #include <com/sun/star/script/XLibraryContainerPassword.hpp> #include <sfx2/dispatch.hxx> #include <sfx2/request.hxx> +#include <sal/log.hxx> namespace basctl { diff --git a/basctl/source/basicide/bastypes.cxx b/basctl/source/basicide/bastypes.cxx index 765387522416..d648353c08f9 100644 --- a/basctl/source/basicide/bastypes.cxx +++ b/basctl/source/basicide/bastypes.cxx @@ -27,6 +27,7 @@ #include <basic/basmgr.hxx> #include <com/sun/star/script/XLibraryContainerPassword.hpp> +#include <sal/log.hxx> #include <sfx2/dispatch.hxx> #include <sfx2/passwd.hxx> #include <svl/intitem.hxx> diff --git a/basctl/source/basicide/sbxitem.cxx b/basctl/source/basicide/sbxitem.cxx index d6f6b047be86..e1281f62510a 100644 --- a/basctl/source/basicide/sbxitem.cxx +++ b/basctl/source/basicide/sbxitem.cxx @@ -18,6 +18,7 @@ */ #include <sbxitem.hxx> +#include <sal/log.hxx> namespace basctl { diff --git a/basctl/source/basicide/scriptdocument.cxx b/basctl/source/basicide/scriptdocument.cxx index 559f4f82a301..c7223ed72d5d 100644 --- a/basctl/source/basicide/scriptdocument.cxx +++ b/basctl/source/basicide/scriptdocument.cxx @@ -57,6 +57,7 @@ #include <comphelper/processfactory.hxx> #include <comphelper/propertysequence.hxx> +#include <sal/log.hxx> #include <osl/file.hxx> #include <rtl/uri.hxx> #include <set> diff --git a/basctl/source/dlged/dlgedobj.cxx b/basctl/source/dlged/dlgedobj.cxx index 968a2ed3ed81..359f9aab9587 100644 --- a/basctl/source/dlged/dlgedobj.cxx +++ b/basctl/source/dlged/dlgedobj.cxx @@ -18,6 +18,7 @@ */ #include <sal/config.h> +#include <sal/log.hxx> #include <cassert> |