summaryrefslogtreecommitdiff
path: root/lotuswordpro
diff options
context:
space:
mode:
authorGabor Kelemen <kelemeng@ubuntu.com>2018-07-27 22:33:55 +0200
committerMiklos Vajna <vmiklos@collabora.co.uk>2018-07-30 16:26:31 +0200
commitc6e5d55171b295149a5e93fa8ee23c9c9908c6dd (patch)
treef8b2be3f9b44495514cfb96671a0108541d21ee4 /lotuswordpro
parent5ea91ed27342766f2b6103ddb64f07e35af54e50 (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 l10ntools to reportdesign Change-Id: Ia2dc93dd848c2dc0b6a8cb6e19849c614ec55198 Reviewed-on: https://gerrit.libreoffice.org/58205 Tested-by: Jenkins Reviewed-by: Miklos Vajna <vmiklos@collabora.co.uk>
Diffstat (limited to 'lotuswordpro')
-rw-r--r--lotuswordpro/source/filter/lwpbulletstylemgr.cxx1
-rw-r--r--lotuswordpro/source/filter/lwpdivinfo.cxx1
-rw-r--r--lotuswordpro/source/filter/lwpfont.cxx1
-rw-r--r--lotuswordpro/source/filter/lwpgrfobj.cxx1
-rw-r--r--lotuswordpro/source/filter/lwplayout.cxx1
-rw-r--r--lotuswordpro/source/filter/lwpobjfactory.cxx1
-rw-r--r--lotuswordpro/source/filter/lwppagelayout.cxx1
-rw-r--r--lotuswordpro/source/filter/lwpparaborderoverride.cxx1
-rw-r--r--lotuswordpro/source/filter/lwpsdwgrouploaderv0102.cxx1
-rw-r--r--lotuswordpro/source/filter/lwptablelayout.cxx1
-rw-r--r--lotuswordpro/source/filter/lwptblformula.cxx1
-rw-r--r--lotuswordpro/source/filter/tocread.cxx1
12 files changed, 12 insertions, 0 deletions
diff --git a/lotuswordpro/source/filter/lwpbulletstylemgr.cxx b/lotuswordpro/source/filter/lwpbulletstylemgr.cxx
index 325114cdb8ee..35a8e3475030 100644
--- a/lotuswordpro/source/filter/lwpbulletstylemgr.cxx
+++ b/lotuswordpro/source/filter/lwpbulletstylemgr.cxx
@@ -71,6 +71,7 @@
#include <xfilter/xflist.hxx>
#include <lwpglobalmgr.hxx>
#include <xfilter/xflistitem.hxx>
+#include <sal/log.hxx>
LwpBulletStyleMgr::LwpBulletStyleMgr()
: m_pFoundry(nullptr)
diff --git a/lotuswordpro/source/filter/lwpdivinfo.cxx b/lotuswordpro/source/filter/lwpdivinfo.cxx
index 8ff1939872e9..bd4da5b6070c 100644
--- a/lotuswordpro/source/filter/lwpdivinfo.cxx
+++ b/lotuswordpro/source/filter/lwpdivinfo.cxx
@@ -63,6 +63,7 @@
#include <lwpfilehdr.hxx>
#include "lwpholder.hxx"
#include "lwppagehint.hxx"
+#include <sal/log.hxx>
LwpDivInfo::LwpDivInfo(LwpObjectHeader const & objHdr, LwpSvStream* pStrm)
: LwpObject(objHdr, pStrm)
diff --git a/lotuswordpro/source/filter/lwpfont.cxx b/lotuswordpro/source/filter/lwpfont.cxx
index fda432add2b4..329e08790b16 100644
--- a/lotuswordpro/source/filter/lwpfont.cxx
+++ b/lotuswordpro/source/filter/lwpfont.cxx
@@ -60,6 +60,7 @@
#include <xfilter/xftextstyle.hxx>
#include <xfilter/xfdefs.hxx>
#include <xfilter/xfcolor.hxx>
+#include <sal/log.hxx>
void LwpFontAttrEntry::Read(LwpObjectStream *pStrm)
{
diff --git a/lotuswordpro/source/filter/lwpgrfobj.cxx b/lotuswordpro/source/filter/lwpgrfobj.cxx
index 10945a7ff982..dcfee796bbb1 100644
--- a/lotuswordpro/source/filter/lwpgrfobj.cxx
+++ b/lotuswordpro/source/filter/lwpgrfobj.cxx
@@ -82,6 +82,7 @@
#include <string.h>
#include <osl/thread.h>
+#include <sal/log.hxx>
#define EF_NONE 0x0000
#define EF_ODMA 0x0002
diff --git a/lotuswordpro/source/filter/lwplayout.cxx b/lotuswordpro/source/filter/lwplayout.cxx
index 5e548d1a6019..115c4635b339 100644
--- a/lotuswordpro/source/filter/lwplayout.cxx
+++ b/lotuswordpro/source/filter/lwplayout.cxx
@@ -72,6 +72,7 @@
#include "lwpdivinfo.hxx"
#include "lwpgrfobj.hxx"
#include <osl/thread.h>
+#include <sal/log.hxx>
LwpVirtualLayout::LwpVirtualLayout(LwpObjectHeader const &objHdr, LwpSvStream* pStrm)
: LwpDLNFPVList(objHdr, pStrm)
diff --git a/lotuswordpro/source/filter/lwpobjfactory.cxx b/lotuswordpro/source/filter/lwpobjfactory.cxx
index 0f598c189b63..bd24168882ba 100644
--- a/lotuswordpro/source/filter/lwpobjfactory.cxx
+++ b/lotuswordpro/source/filter/lwpobjfactory.cxx
@@ -94,6 +94,7 @@
#include <lwpdocdata.hxx>
#include "lwpnotes.hxx"
#include "lwpverdocument.hxx"
+#include <sal/log.hxx>
//LwpObjectFactory* LwpObjectFactory::m_pMgr = NULL;
diff --git a/lotuswordpro/source/filter/lwppagelayout.cxx b/lotuswordpro/source/filter/lwppagelayout.cxx
index b3d58c692542..c083b37d0b59 100644
--- a/lotuswordpro/source/filter/lwppagelayout.cxx
+++ b/lotuswordpro/source/filter/lwppagelayout.cxx
@@ -74,6 +74,7 @@
#include <sfx2/printer.hxx>
#include <lwpchangemgr.hxx>
#include <lwpglobalmgr.hxx>
+#include <sal/log.hxx>
LwpPageLayout::LwpPageLayout(LwpObjectHeader const &objHdr, LwpSvStream* pStrm)
: LwpLayout(objHdr, pStrm)
diff --git a/lotuswordpro/source/filter/lwpparaborderoverride.cxx b/lotuswordpro/source/filter/lwpparaborderoverride.cxx
index 7f886da12c12..4d372ae5b763 100644
--- a/lotuswordpro/source/filter/lwpparaborderoverride.cxx
+++ b/lotuswordpro/source/filter/lwpparaborderoverride.cxx
@@ -64,6 +64,7 @@
#include "lwpborderstuff.hxx"
#include "lwpshadow.hxx"
#include "lwpmargins.hxx"
+#include <sal/log.hxx>
LwpParaBorderOverride::LwpParaBorderOverride()
{
diff --git a/lotuswordpro/source/filter/lwpsdwgrouploaderv0102.cxx b/lotuswordpro/source/filter/lwpsdwgrouploaderv0102.cxx
index 05daa2e7686b..e77c45138649 100644
--- a/lotuswordpro/source/filter/lwpsdwgrouploaderv0102.cxx
+++ b/lotuswordpro/source/filter/lwpsdwgrouploaderv0102.cxx
@@ -74,6 +74,7 @@
#include <xfilter/xfdrawlinestyle.hxx>
#include <xfilter/xfparagraph.hxx>
#include <xfilter/xfstylemanager.hxx>
+#include <sal/log.hxx>
LwpSdwGroupLoaderV0102::LwpSdwGroupLoaderV0102(SvStream* pStream, LwpGraphicObject* pGraphicObj)
: m_pStream(pStream)
diff --git a/lotuswordpro/source/filter/lwptablelayout.cxx b/lotuswordpro/source/filter/lwptablelayout.cxx
index 51d2a25ab641..6c9b71ef5d64 100644
--- a/lotuswordpro/source/filter/lwptablelayout.cxx
+++ b/lotuswordpro/source/filter/lwptablelayout.cxx
@@ -83,6 +83,7 @@
#include <xfilter/xfparastyle.hxx>
#include <memory>
#include <set>
+#include <sal/log.hxx>
LwpSuperTableLayout::LwpSuperTableLayout(LwpObjectHeader const &objHdr, LwpSvStream* pStrm)
: LwpPlacableLayout(objHdr, pStrm)
diff --git a/lotuswordpro/source/filter/lwptblformula.cxx b/lotuswordpro/source/filter/lwptblformula.cxx
index 768e54f14a65..342893431021 100644
--- a/lotuswordpro/source/filter/lwptblformula.cxx
+++ b/lotuswordpro/source/filter/lwptblformula.cxx
@@ -66,6 +66,7 @@
#include "lwptablelayout.hxx"
#include <osl/thread.h>
#include <rtl/ustrbuf.hxx>
+#include <sal/log.hxx>
#include <memory>
LwpFormulaArg::~LwpFormulaArg()
diff --git a/lotuswordpro/source/filter/tocread.cxx b/lotuswordpro/source/filter/tocread.cxx
index e6af6f42e8f1..93d5a451d993 100644
--- a/lotuswordpro/source/filter/tocread.cxx
+++ b/lotuswordpro/source/filter/tocread.cxx
@@ -55,6 +55,7 @@
************************************************************************/
#include <sal/config.h>
+#include <sal/log.hxx>
#include <cstring>