From 0a840edcc19ad1b8bb1525717d91ce8ade0c0092 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Fri, 18 Nov 2016 10:10:48 +0200 Subject: includes should be at the top of the file not randomly scattered through the code found with something like: git ls-files *.cpp | xargs grep -Pzl "(?s){.*#include" Change-Id: I9c242fa4ef99e8677f2800d7ec9f16d16e488351 Reviewed-on: https://gerrit.libreoffice.org/30952 Tested-by: Jenkins Reviewed-by: Noel Grandin --- lotuswordpro/source/filter/lwpfoundry.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'lotuswordpro/source/filter/lwpfoundry.cxx') diff --git a/lotuswordpro/source/filter/lwpfoundry.cxx b/lotuswordpro/source/filter/lwpfoundry.cxx index d7dde9fd06bf..6591db06beda 100644 --- a/lotuswordpro/source/filter/lwpfoundry.cxx +++ b/lotuswordpro/source/filter/lwpfoundry.cxx @@ -69,6 +69,9 @@ #include "lwpsection.hxx" #include "lwpcharacterstyle.hxx" #include "lwpglobalmgr.hxx" +#include "xfilter/xfstylemanager.hxx" +#include "lwplayout.hxx" + #include @@ -170,9 +173,6 @@ void LwpFoundry::ReadStyles(LwpObjectStream *pStrm) } -#include "xfilter/xfstylemanager.hxx" -#include "lwplayout.hxx" - void LwpFoundry::RegisterAllLayouts() { if (m_bRegisteredAll) -- cgit