diff options
author | Gabor Kelemen <kelemeng@ubuntu.com> | 2018-08-05 00:50:24 +0200 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.co.uk> | 2018-08-06 16:04:35 +0200 |
commit | c40109cc4e2412b06a2cc2e92ac1267c6c338aed (patch) | |
tree | f47129805cee040499bf401ebabba1340b411c7f /fpicker | |
parent | a472d3352a61b51624aea480410789e3f547a9ca (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')
in files formerly omitted for oversight or non-cxx extension
Change-Id: I327c573f44076c6ccfecf737eafccba2da72e1bd
Reviewed-on: https://gerrit.libreoffice.org/58600
Tested-by: Jenkins
Reviewed-by: Miklos Vajna <vmiklos@collabora.co.uk>
Diffstat (limited to 'fpicker')
-rw-r--r-- | fpicker/source/aqua/FilterHelper.mm | 1 | ||||
-rw-r--r-- | fpicker/source/aqua/SalAquaFilePicker.mm | 1 | ||||
-rw-r--r-- | fpicker/source/aqua/SalAquaFolderPicker.mm | 1 | ||||
-rw-r--r-- | fpicker/source/aqua/SalAquaPicker.mm | 1 |
4 files changed, 4 insertions, 0 deletions
diff --git a/fpicker/source/aqua/FilterHelper.mm b/fpicker/source/aqua/FilterHelper.mm index 4bfff715e748..3e748021079f 100644 --- a/fpicker/source/aqua/FilterHelper.mm +++ b/fpicker/source/aqua/FilterHelper.mm @@ -18,6 +18,7 @@ */ #include <sal/config.h> +#include <sal/log.hxx> #include <algorithm> #include <osl/mutex.hxx> diff --git a/fpicker/source/aqua/SalAquaFilePicker.mm b/fpicker/source/aqua/SalAquaFilePicker.mm index 32c56c6ca635..57d30cfa8a30 100644 --- a/fpicker/source/aqua/SalAquaFilePicker.mm +++ b/fpicker/source/aqua/SalAquaFilePicker.mm @@ -20,6 +20,7 @@ #include <config_features.h> #include <sal/config.h> +#include <sal/log.hxx> #include <com/sun/star/lang/DisposedException.hpp> #include <com/sun/star/lang/XMultiServiceFactory.hpp> diff --git a/fpicker/source/aqua/SalAquaFolderPicker.mm b/fpicker/source/aqua/SalAquaFolderPicker.mm index a419701a9129..68cb69c11c4d 100644 --- a/fpicker/source/aqua/SalAquaFolderPicker.mm +++ b/fpicker/source/aqua/SalAquaFolderPicker.mm @@ -28,6 +28,7 @@ #include <com/sun/star/ui/dialogs/TemplateDescription.hpp> #include "FPServiceInfo.hxx" #include <osl/mutex.hxx> +#include <sal/log.hxx> #include <vcl/svapp.hxx> #include "SalAquaFolderPicker.hxx" diff --git a/fpicker/source/aqua/SalAquaPicker.mm b/fpicker/source/aqua/SalAquaPicker.mm index a54cc49cb3ab..1753ad7d80e3 100644 --- a/fpicker/source/aqua/SalAquaPicker.mm +++ b/fpicker/source/aqua/SalAquaPicker.mm @@ -18,6 +18,7 @@ */ #include <sal/config.h> +#include <sal/log.hxx> #include <com/sun/star/lang/DisposedException.hpp> #include <com/sun/star/lang/XMultiServiceFactory.hpp> |