summaryrefslogtreecommitdiff
path: root/vcl/source/bitmap
diff options
context:
space:
mode:
authorGabor Kelemen <kelemeng@ubuntu.com>2018-07-28 15:57:23 +0200
committerMiklos Vajna <vmiklos@collabora.co.uk>2018-07-31 10:48:50 +0200
commita43b79f6f9d16d52cdd30b990169160573e5de17 (patch)
treeef46aa35ee2bd1878b34110ec90720bf9b9ac0ec /vcl/source/bitmap
parent7a3e7ee1c7323e6db279d006ff218e6543228f3f (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 vcl Change-Id: I205fe0f4e80a66cd9c3b19f7e9716411da1d1cf5 Reviewed-on: https://gerrit.libreoffice.org/58221 Tested-by: Jenkins Reviewed-by: Miklos Vajna <vmiklos@collabora.co.uk>
Diffstat (limited to 'vcl/source/bitmap')
-rw-r--r--vcl/source/bitmap/BitmapFastScaleFilter.cxx1
-rw-r--r--vcl/source/bitmap/BitmapScaleSuperFilter.cxx1
-rw-r--r--vcl/source/bitmap/BitmapTools.cxx1
-rw-r--r--vcl/source/bitmap/bitmapfilter.cxx1
4 files changed, 4 insertions, 0 deletions
diff --git a/vcl/source/bitmap/BitmapFastScaleFilter.cxx b/vcl/source/bitmap/BitmapFastScaleFilter.cxx
index 6bf1700a476f..5d02e5ea32c6 100644
--- a/vcl/source/bitmap/BitmapFastScaleFilter.cxx
+++ b/vcl/source/bitmap/BitmapFastScaleFilter.cxx
@@ -24,6 +24,7 @@
#include <bitmapwriteaccess.hxx>
#include <BitmapFastScaleFilter.hxx>
+#include <sal/log.hxx>
BitmapEx BitmapFastScaleFilter::execute(BitmapEx const& rBitmapEx)
{
diff --git a/vcl/source/bitmap/BitmapScaleSuperFilter.cxx b/vcl/source/bitmap/BitmapScaleSuperFilter.cxx
index 01e922a9fa57..10ab46f5214c 100644
--- a/vcl/source/bitmap/BitmapScaleSuperFilter.cxx
+++ b/vcl/source/bitmap/BitmapScaleSuperFilter.cxx
@@ -26,6 +26,7 @@
#include <algorithm>
#include <memory>
+#include <sal/log.hxx>
namespace {
diff --git a/vcl/source/bitmap/BitmapTools.cxx b/vcl/source/bitmap/BitmapTools.cxx
index 40f6c3d7258b..4f13511a5fab 100644
--- a/vcl/source/bitmap/BitmapTools.cxx
+++ b/vcl/source/bitmap/BitmapTools.cxx
@@ -10,6 +10,7 @@
#include <vcl/BitmapTools.hxx>
+#include <sal/log.hxx>
#include <comphelper/processfactory.hxx>
#include <comphelper/seqstream.hxx>
#include <vcl/canvastools.hxx>
diff --git a/vcl/source/bitmap/bitmapfilter.cxx b/vcl/source/bitmap/bitmapfilter.cxx
index 4c20a83f0d40..51aae7bd8a0d 100644
--- a/vcl/source/bitmap/bitmapfilter.cxx
+++ b/vcl/source/bitmap/bitmapfilter.cxx
@@ -12,6 +12,7 @@
#include <vcl/animate.hxx>
#include <algorithm>
+#include <sal/log.hxx>
BitmapFilter::BitmapFilter() {}