diff options
author | Gabor Kelemen <kelemeng@ubuntu.com> | 2018-07-28 17:43:23 +0200 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.co.uk> | 2018-08-02 10:39:00 +0200 |
commit | bd8320952522165ee7f5f6cbe2675ea674ec5749 (patch) | |
tree | c0574742c59a06239a4a8be681ddadac50531f5c /svx/source/svdraw | |
parent | 1e9f594f7eb4a813c3a566114198632352a163d8 (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 stoc to svx
Change-Id: If562b1aa1d676d2c1cf513e953238abbb846c65c
Reviewed-on: https://gerrit.libreoffice.org/58224
Tested-by: Jenkins
Reviewed-by: Miklos Vajna <vmiklos@collabora.co.uk>
Diffstat (limited to 'svx/source/svdraw')
-rw-r--r-- | svx/source/svdraw/svdedtv2.cxx | 1 | ||||
-rw-r--r-- | svx/source/svdraw/svdedxv.cxx | 1 | ||||
-rw-r--r-- | svx/source/svdraw/svdibrow.cxx | 1 | ||||
-rw-r--r-- | svx/source/svdraw/svdobj.cxx | 1 | ||||
-rw-r--r-- | svx/source/svdraw/svdomedia.cxx | 1 | ||||
-rw-r--r-- | svx/source/svdraw/svdoole2.cxx | 1 | ||||
-rw-r--r-- | svx/source/svdraw/svdopath.cxx | 1 | ||||
-rw-r--r-- | svx/source/svdraw/svdotext.cxx | 1 | ||||
-rw-r--r-- | svx/source/svdraw/svdotextdecomposition.cxx | 1 | ||||
-rw-r--r-- | svx/source/svdraw/svdpdf.cxx | 1 | ||||
-rw-r--r-- | svx/source/svdraw/svdtrans.cxx | 1 | ||||
-rw-r--r-- | svx/source/svdraw/svdview.cxx | 1 | ||||
-rw-r--r-- | svx/source/svdraw/textchainflow.cxx | 1 |
13 files changed, 13 insertions, 0 deletions
diff --git a/svx/source/svdraw/svdedtv2.cxx b/svx/source/svdraw/svdedtv2.cxx index 85ca2a280b08..d6031358738a 100644 --- a/svx/source/svdraw/svdedtv2.cxx +++ b/svx/source/svdraw/svdedtv2.cxx @@ -42,6 +42,7 @@ #include <svx/svdoashp.hxx> #include <basegfx/polygon/b2dpolypolygoncutter.hxx> #include <o3tl/make_unique.hxx> +#include <sal/log.hxx> #include <memory> #include <vector> diff --git a/svx/source/svdraw/svdedxv.cxx b/svx/source/svdraw/svdedxv.cxx index 5dc1a3473135..e6616c0247e0 100644 --- a/svx/source/svdraw/svdedxv.cxx +++ b/svx/source/svdraw/svdedxv.cxx @@ -67,6 +67,7 @@ #include <svx/sdr/overlay/overlayselection.hxx> #include <svx/sdr/overlay/overlaymanager.hxx> #include <svx/sdrpagewindow.hxx> +#include <sal/log.hxx> #include <memory> diff --git a/svx/source/svdraw/svdibrow.cxx b/svx/source/svdraw/svdibrow.cxx index b8976cfa12c4..61401a33262f 100644 --- a/svx/source/svdraw/svdibrow.cxx +++ b/svx/source/svdraw/svdibrow.cxx @@ -33,6 +33,7 @@ #include <svl/rectitem.hxx> #include <svl/rngitem.hxx> #include <svl/whiter.hxx> +#include <sal/log.hxx> #include <svx/sdrpaintwindow.hxx> #include <svx/svdattr.hxx> diff --git a/svx/source/svdraw/svdobj.cxx b/svx/source/svdraw/svdobj.cxx index 6cd4947da101..f2b2db4086cb 100644 --- a/svx/source/svdraw/svdobj.cxx +++ b/svx/source/svdraw/svdobj.cxx @@ -21,6 +21,7 @@ #include <config_features.h> #include <sal/config.h> +#include <sal/log.hxx> #include <com/sun/star/lang/XComponent.hpp> #include <com/sun/star/text/RelOrientation.hpp> diff --git a/svx/source/svdraw/svdomedia.cxx b/svx/source/svdraw/svdomedia.cxx index 54c3d66846da..8ed836168792 100644 --- a/svx/source/svdraw/svdomedia.cxx +++ b/svx/source/svdraw/svdomedia.cxx @@ -23,6 +23,7 @@ #include <rtl/ustring.hxx> #include <osl/file.hxx> +#include <sal/log.hxx> #include <com/sun/star/document/XStorageBasedDocument.hpp> #include <com/sun/star/embed/XStorage.hpp> diff --git a/svx/source/svdraw/svdoole2.cxx b/svx/source/svdraw/svdoole2.cxx index c259f1b4bb1e..02179d16879f 100644 --- a/svx/source/svdraw/svdoole2.cxx +++ b/svx/source/svdraw/svdoole2.cxx @@ -86,6 +86,7 @@ #include <rtl/ref.hxx> #include <bitmaps.hlst> #include <o3tl/make_unique.hxx> +#include <sal/log.hxx> using namespace ::com::sun::star; diff --git a/svx/source/svdraw/svdopath.cxx b/svx/source/svdraw/svdopath.cxx index 63acf8d4f9f5..c1b8e57b7d34 100644 --- a/svx/source/svdraw/svdopath.cxx +++ b/svx/source/svdraw/svdopath.cxx @@ -53,6 +53,7 @@ #include <svx/sdr/attribute/sdrformtextattribute.hxx> #include <o3tl/make_unique.hxx> #include <memory> +#include <sal/log.hxx> using namespace sdr; diff --git a/svx/source/svdraw/svdotext.cxx b/svx/source/svdraw/svdotext.cxx index 3c4ee03d89b3..a7e706da16a6 100644 --- a/svx/source/svdraw/svdotext.cxx +++ b/svx/source/svdraw/svdotext.cxx @@ -61,6 +61,7 @@ #include <vcl/virdev.hxx> #include <basegfx/matrix/b2dhommatrixtools.hxx> #include <o3tl/make_unique.hxx> +#include <sal/log.hxx> using namespace com::sun::star; diff --git a/svx/source/svdraw/svdotextdecomposition.cxx b/svx/source/svdraw/svdotextdecomposition.cxx index 0ef85952b253..70f23a4e5974 100644 --- a/svx/source/svdraw/svdotextdecomposition.cxx +++ b/svx/source/svdraw/svdotextdecomposition.cxx @@ -54,6 +54,7 @@ #include <editeng/editobj.hxx> #include <editeng/overflowingtxt.hxx> #include <basegfx/matrix/b2dhommatrixtools.hxx> +#include <sal/log.hxx> using namespace com::sun::star; diff --git a/svx/source/svdraw/svdpdf.cxx b/svx/source/svdraw/svdpdf.cxx index b6bc08ce7d10..f7797f54fe15 100644 --- a/svx/source/svdraw/svdpdf.cxx +++ b/svx/source/svdraw/svdpdf.cxx @@ -85,6 +85,7 @@ #include <vcl/BitmapTools.hxx> #include <vcl/dibtools.hxx> #include <com/sun/star/geometry/Matrix2D.hpp> +#include <sal/log.hxx> namespace { diff --git a/svx/source/svdraw/svdtrans.cxx b/svx/source/svdraw/svdtrans.cxx index 5d8719b7abea..d039b68afae9 100644 --- a/svx/source/svdraw/svdtrans.cxx +++ b/svx/source/svdraw/svdtrans.cxx @@ -25,6 +25,7 @@ #include <vcl/virdev.hxx> #include <tools/bigint.hxx> #include <unotools/syslocale.hxx> +#include <sal/log.hxx> void MoveXPoly(XPolygon& rPoly, const Size& S) { diff --git a/svx/source/svdraw/svdview.cxx b/svx/source/svdraw/svdview.cxx index 91bccc57f5e2..3cdbec76c362 100644 --- a/svx/source/svdraw/svdview.cxx +++ b/svx/source/svdraw/svdview.cxx @@ -51,6 +51,7 @@ #include <svx/sdr/contact/viewcontact.hxx> #include <drawinglayer/processor2d/contourextractor2d.hxx> #include <drawinglayer/primitive2d/texthierarchyprimitive2d.hxx> +#include <sal/log.hxx> SdrViewEvent::SdrViewEvent() diff --git a/svx/source/svdraw/textchainflow.cxx b/svx/source/svdraw/textchainflow.cxx index b3d473923633..3ca13ce06b6c 100644 --- a/svx/source/svdraw/textchainflow.cxx +++ b/svx/source/svdraw/textchainflow.cxx @@ -24,6 +24,7 @@ #include <editeng/editobj.hxx> #include <editeng/overflowingtxt.hxx> #include <svx/textchainflow.hxx> +#include <sal/log.hxx> TextChainFlow::TextChainFlow(SdrTextObj *pChainTarget) : mpTargetLink(pChainTarget) |