summaryrefslogtreecommitdiff
path: root/lotuswordpro
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2018-01-17 08:22:03 +0100
committerStephan Bergmann <sbergman@redhat.com>2018-01-17 11:07:15 +0100
commit3f84927c1cdadffe1eebb9cd6843587245588b91 (patch)
treec9c11a1e62d7c597d031a820ec222eea93b148bf /lotuswordpro
parent777bf677b38b293378bc83cf09bf08125c19f31d (diff)
Missing includes (Windows --disable-pch)
Change-Id: I5cd3297cff31b88c53cd04232bed40cbf04fa2f6 Reviewed-on: https://gerrit.libreoffice.org/48028 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'lotuswordpro')
-rw-r--r--lotuswordpro/source/filter/explode.cxx2
-rw-r--r--lotuswordpro/source/filter/lwptable.cxx4
2 files changed, 6 insertions, 0 deletions
diff --git a/lotuswordpro/source/filter/explode.cxx b/lotuswordpro/source/filter/explode.cxx
index fa04eac514d2..5d821698745c 100644
--- a/lotuswordpro/source/filter/explode.cxx
+++ b/lotuswordpro/source/filter/explode.cxx
@@ -56,6 +56,8 @@
#include "explode.hxx"
#include <tools/stream.hxx>
+
+#include <algorithm>
#include <assert.h>
#include <math.h>
diff --git a/lotuswordpro/source/filter/lwptable.cxx b/lotuswordpro/source/filter/lwptable.cxx
index 63ecd92b6e52..31d55cc6895f 100644
--- a/lotuswordpro/source/filter/lwptable.cxx
+++ b/lotuswordpro/source/filter/lwptable.cxx
@@ -58,6 +58,10 @@
* For LWP filter architecture prototype - table object
*/
+#include <sal/config.h>
+
+#include <algorithm>
+
#include "lwptable.hxx"
LwpSuperTable::LwpSuperTable(LwpObjectHeader const &objHdr, LwpSvStream* pStrm):LwpContent(objHdr, pStrm)