summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Kaganski <mike.kaganski@collabora.com>2017-10-05 22:53:50 +0300
committerMike Kaganski <mike.kaganski@collabora.com>2017-10-05 22:02:10 +0200
commit68d61a93819fd502630083a7080f099c4c218092 (patch)
tree88857485e5dd05c4ee331ede5b1cb475b064311a
parentca95e886b42157d1d6394ed0b4c910978f5c2fda (diff)
ww8: always use "" for includes in current source's directory
For rationale, see commit 633f405701fc5cadfa73e950f7a8c122ad01c149 Change-Id: I2e251ad9ba61cd292bcbd57917e717e4ce14ae63 Reviewed-on: https://gerrit.libreoffice.org/43179 Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com> Tested-by: Mike Kaganski <mike.kaganski@collabora.com>
-rw-r--r--sw/source/filter/ww8/docxattributeoutput.hxx2
-rw-r--r--sw/source/filter/ww8/docxexport.cxx2
-rw-r--r--sw/source/filter/ww8/docxsdrexport.cxx6
-rw-r--r--sw/source/filter/ww8/rtfexportfilter.cxx4
-rw-r--r--sw/source/filter/ww8/rtfsdrexport.hxx2
-rw-r--r--sw/source/filter/ww8/wrtw8esh.cxx2
-rw-r--r--sw/source/filter/ww8/wrtw8nds.cxx2
-rw-r--r--sw/source/filter/ww8/wrtw8num.cxx2
-rw-r--r--sw/source/filter/ww8/wrtw8sty.cxx4
-rw-r--r--sw/source/filter/ww8/wrtww8.cxx6
-rw-r--r--sw/source/filter/ww8/wrtww8gr.cxx2
-rw-r--r--sw/source/filter/ww8/ww8atr.cxx2
-rw-r--r--sw/source/filter/ww8/ww8graf.cxx2
-rw-r--r--sw/source/filter/ww8/ww8par.cxx2
-rw-r--r--sw/source/filter/ww8/ww8par2.cxx2
-rw-r--r--sw/source/filter/ww8/ww8par3.cxx2
-rw-r--r--sw/source/filter/ww8/ww8par4.cxx2
-rw-r--r--sw/source/filter/ww8/ww8par6.cxx2
-rw-r--r--sw/source/filter/ww8/ww8scan.cxx2
-rw-r--r--sw/source/filter/ww8/ww8scan.hxx2
20 files changed, 26 insertions, 26 deletions
diff --git a/sw/source/filter/ww8/docxattributeoutput.hxx b/sw/source/filter/ww8/docxattributeoutput.hxx
index 8024566433f6..65334bc07a50 100644
--- a/sw/source/filter/ww8/docxattributeoutput.hxx
+++ b/sw/source/filter/ww8/docxattributeoutput.hxx
@@ -38,7 +38,7 @@
#include <boost/optional.hpp>
#include <oox/export/vmlexport.hxx>
#include <oox/export/drawingml.hxx>
-#include <docxtablestyleexport.hxx>
+#include "docxtablestyleexport.hxx"
#include <com/sun/star/table/BorderLine2.hpp>
#include <com/sun/star/drawing/FillStyle.hpp>
diff --git a/sw/source/filter/ww8/docxexport.cxx b/sw/source/filter/ww8/docxexport.cxx
index 166c7c78c268..2b8d97fb43e6 100644
--- a/sw/source/filter/ww8/docxexport.cxx
+++ b/sw/source/filter/ww8/docxexport.cxx
@@ -54,7 +54,7 @@
#include <IDocumentStylePoolAccess.hxx>
#include <docsh.hxx>
#include <ndtxt.hxx>
-#include <wrtww8.hxx>
+#include "wrtww8.hxx"
#include <fltini.hxx>
#include <fmtline.hxx>
#include <fmtpdsc.hxx>
diff --git a/sw/source/filter/ww8/docxsdrexport.cxx b/sw/source/filter/ww8/docxsdrexport.cxx
index 720a923f5861..ae0b02873cb5 100644
--- a/sw/source/filter/ww8/docxsdrexport.cxx
+++ b/sw/source/filter/ww8/docxsdrexport.cxx
@@ -7,7 +7,7 @@
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
-#include <docxsdrexport.hxx>
+#include "docxsdrexport.hxx"
#include <com/sun/star/drawing/LineStyle.hpp>
#include <com/sun/star/drawing/PointSequenceSequence.hpp>
#include <com/sun/star/xml/sax/XSAXSerializable.hpp>
@@ -27,8 +27,8 @@
#include <txatbase.hxx>
#include <fmtfsize.hxx>
#include <drawdoc.hxx>
-#include <docxattributeoutput.hxx>
-#include <docxexportfilter.hxx>
+#include "docxattributeoutput.hxx"
+#include "docxexportfilter.hxx"
#include <comphelper/seqstream.hxx>
#include <comphelper/sequence.hxx>
#include <comphelper/sequenceashashmap.hxx>
diff --git a/sw/source/filter/ww8/rtfexportfilter.cxx b/sw/source/filter/ww8/rtfexportfilter.cxx
index 226fc3667074..3c0ecbe360de 100644
--- a/sw/source/filter/ww8/rtfexportfilter.cxx
+++ b/sw/source/filter/ww8/rtfexportfilter.cxx
@@ -17,8 +17,8 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-#include <rtfexportfilter.hxx>
-#include <rtfexport.hxx>
+#include "rtfexportfilter.hxx"
+#include "rtfexport.hxx"
#include <docsh.hxx>
#include <IDocumentLayoutAccess.hxx>
diff --git a/sw/source/filter/ww8/rtfsdrexport.hxx b/sw/source/filter/ww8/rtfsdrexport.hxx
index f8d29fbc5a8a..6b949d46a582 100644
--- a/sw/source/filter/ww8/rtfsdrexport.hxx
+++ b/sw/source/filter/ww8/rtfsdrexport.hxx
@@ -28,7 +28,7 @@
#include <memory>
#include <set>
-#include <wrtww8.hxx>
+#include "wrtww8.hxx"
class RtfExport;
class RtfAttributeOutput;
diff --git a/sw/source/filter/ww8/wrtw8esh.cxx b/sw/source/filter/ww8/wrtw8esh.cxx
index ccdc417c8e04..3d2d2655b0ac 100644
--- a/sw/source/filter/ww8/wrtw8esh.cxx
+++ b/sw/source/filter/ww8/wrtw8esh.cxx
@@ -76,7 +76,7 @@
#include <ndole.hxx>
#include <unodraw.hxx>
#include <pagedesc.hxx>
-#include <ww8par.hxx>
+#include "ww8par.hxx"
#include <breakit.hxx>
#include <com/sun/star/i18n/ScriptType.hpp>
#include "ww8attributeoutput.hxx"
diff --git a/sw/source/filter/ww8/wrtw8nds.cxx b/sw/source/filter/ww8/wrtw8nds.cxx
index 91eed80cdc65..3b91af45d4d4 100644
--- a/sw/source/filter/ww8/wrtw8nds.cxx
+++ b/sw/source/filter/ww8/wrtw8nds.cxx
@@ -84,7 +84,7 @@
#include <com/sun/star/i18n/WordType.hpp>
#include <oox/export/vmlexport.hxx>
-#include <sprmids.hxx>
+#include "sprmids.hxx"
#include "writerhelper.hxx"
#include "writerwordglue.hxx"
diff --git a/sw/source/filter/ww8/wrtw8num.cxx b/sw/source/filter/ww8/wrtw8num.cxx
index 43cdb2008d75..035b839166f9 100644
--- a/sw/source/filter/ww8/wrtw8num.cxx
+++ b/sw/source/filter/ww8/wrtw8num.cxx
@@ -31,7 +31,7 @@
#include <unotools/fontcfg.hxx>
#include <com/sun/star/i18n/ScriptType.hpp>
-#include <sprmids.hxx>
+#include "sprmids.hxx"
#include "ww8attributeoutput.hxx"
#include "writerhelper.hxx"
diff --git a/sw/source/filter/ww8/wrtw8sty.cxx b/sw/source/filter/ww8/wrtw8sty.cxx
index c9c5fc11653a..0140b5855b18 100644
--- a/sw/source/filter/ww8/wrtw8sty.cxx
+++ b/sw/source/filter/ww8/wrtw8sty.cxx
@@ -35,7 +35,7 @@
#include <editeng/lrspitem.hxx>
#include <editeng/ulspitem.hxx>
#include <doc.hxx>
-#include <wrtww8.hxx>
+#include "wrtww8.hxx"
#include <docary.hxx>
#include <poolfmt.hxx>
#include <fmtpdsc.hxx>
@@ -60,7 +60,7 @@
#include <msfilter.hxx>
#include <swmodule.hxx>
-#include <sprmids.hxx>
+#include "sprmids.hxx"
#include "writerhelper.hxx"
#include "writerwordglue.hxx"
diff --git a/sw/source/filter/ww8/wrtww8.cxx b/sw/source/filter/ww8/wrtww8.cxx
index 3b065c030afd..bc2e526d51f1 100644
--- a/sw/source/filter/ww8/wrtww8.cxx
+++ b/sw/source/filter/ww8/wrtww8.cxx
@@ -73,8 +73,8 @@
#include <pagedesc.hxx>
#include <IMark.hxx>
#include <swtable.hxx>
-#include <wrtww8.hxx>
-#include <ww8par.hxx>
+#include "wrtww8.hxx"
+#include "ww8par.hxx"
#include <fltini.hxx>
#include <swmodule.hxx>
#include <section.hxx>
@@ -92,7 +92,7 @@
#include <fmtfsize.hxx>
#include <comphelper/extract.hxx>
#include <comphelper/string.hxx>
-#include <sprmids.hxx>
+#include "sprmids.hxx"
#include "writerhelper.hxx"
#include "writerwordglue.hxx"
diff --git a/sw/source/filter/ww8/wrtww8gr.cxx b/sw/source/filter/ww8/wrtww8gr.cxx
index 0528253b558b..3f2ea6287d87 100644
--- a/sw/source/filter/ww8/wrtww8gr.cxx
+++ b/sw/source/filter/ww8/wrtww8gr.cxx
@@ -51,7 +51,7 @@
#include <fmtfsize.hxx>
#include <fmtornt.hxx>
-#include <sprmids.hxx>
+#include "sprmids.hxx"
#include <doc.hxx>
#include "writerhelper.hxx"
diff --git a/sw/source/filter/ww8/ww8atr.cxx b/sw/source/filter/ww8/ww8atr.cxx
index 84c0248a94a1..4ab9b76c778f 100644
--- a/sw/source/filter/ww8/ww8atr.cxx
+++ b/sw/source/filter/ww8/ww8atr.cxx
@@ -123,7 +123,7 @@
#include <fmthdft.hxx>
#include <authfld.hxx>
-#include <sprmids.hxx>
+#include "sprmids.hxx"
#include <fmtcntnt.hxx>
#include "writerhelper.hxx"
diff --git a/sw/source/filter/ww8/ww8graf.cxx b/sw/source/filter/ww8/ww8graf.cxx
index 0e24c1b7fbd1..440bd1bec4ba 100644
--- a/sw/source/filter/ww8/ww8graf.cxx
+++ b/sw/source/filter/ww8/ww8graf.cxx
@@ -95,7 +95,7 @@
#include <o3tl/enumrange.hxx>
#include <memory>
#include <filter/msfilter/escherex.hxx>
-#include <sprmids.hxx>
+#include "sprmids.hxx"
using ::editeng::SvxBorderLine;
using namespace ::com::sun::star;
diff --git a/sw/source/filter/ww8/ww8par.cxx b/sw/source/filter/ww8/ww8par.cxx
index 395a6cd57330..d84440531c43 100644
--- a/sw/source/filter/ww8/ww8par.cxx
+++ b/sw/source/filter/ww8/ww8par.cxx
@@ -93,7 +93,7 @@
#include <charfmt.hxx>
#include <unocrsr.hxx>
#include <IDocumentSettingAccess.hxx>
-#include <sprmids.hxx>
+#include "sprmids.hxx"
#include <fltini.hxx>
diff --git a/sw/source/filter/ww8/ww8par2.cxx b/sw/source/filter/ww8/ww8par2.cxx
index bad09a202b80..f30b6e9632c7 100644
--- a/sw/source/filter/ww8/ww8par2.cxx
+++ b/sw/source/filter/ww8/ww8par2.cxx
@@ -61,7 +61,7 @@
#include <fmtrowsplt.hxx>
#include <fmtfollowtextflow.hxx>
#include <numrule.hxx>
-#include <sprmids.hxx>
+#include "sprmids.hxx"
#include <wwstyles.hxx>
#include "writerhelper.hxx"
#include "ww8struc.hxx"
diff --git a/sw/source/filter/ww8/ww8par3.cxx b/sw/source/filter/ww8/ww8par3.cxx
index 44168c8bb66f..8e51cb748ae5 100644
--- a/sw/source/filter/ww8/ww8par3.cxx
+++ b/sw/source/filter/ww8/ww8par3.cxx
@@ -57,7 +57,7 @@
#include <expfld.hxx>
#include <fmtfld.hxx>
#include <flddropdown.hxx>
-#include <sprmids.hxx>
+#include "sprmids.hxx"
#include "writerhelper.hxx"
#include "writerwordglue.hxx"
#include "ww8par.hxx"
diff --git a/sw/source/filter/ww8/ww8par4.cxx b/sw/source/filter/ww8/ww8par4.cxx
index 15ac1c90e9fb..52249be91ca7 100644
--- a/sw/source/filter/ww8/ww8par4.cxx
+++ b/sw/source/filter/ww8/ww8par4.cxx
@@ -32,7 +32,7 @@
#include <hintids.hxx>
#include <svx/svdoole2.hxx>
#include <filter/msfilter/msdffimp.hxx>
-#include <sprmids.hxx>
+#include "sprmids.hxx"
#include <svx/unoapi.hxx>
#include <sot/exchange.hxx>
diff --git a/sw/source/filter/ww8/ww8par6.cxx b/sw/source/filter/ww8/ww8par6.cxx
index a375003a4228..c8207b87ad4f 100644
--- a/sw/source/filter/ww8/ww8par6.cxx
+++ b/sw/source/filter/ww8/ww8par6.cxx
@@ -67,7 +67,7 @@
#include <editeng/frmdiritem.hxx>
#include <editeng/charhiddenitem.hxx>
#include <i18nlangtag/mslangid.hxx>
-#include <sprmids.hxx>
+#include "sprmids.hxx"
#include <fmtpdsc.hxx>
#include <node.hxx>
#include <ndtxt.hxx>
diff --git a/sw/source/filter/ww8/ww8scan.cxx b/sw/source/filter/ww8/ww8scan.cxx
index 41d027e8f6e9..e41a89e8e682 100644
--- a/sw/source/filter/ww8/ww8scan.cxx
+++ b/sw/source/filter/ww8/ww8scan.cxx
@@ -27,7 +27,7 @@
#include <algorithm>
#include <i18nlangtag/mslangid.hxx>
-#include <sprmids.hxx>
+#include "sprmids.hxx"
#include <rtl/tencinfo.h>
#include <sal/macros.h>
diff --git a/sw/source/filter/ww8/ww8scan.hxx b/sw/source/filter/ww8/ww8scan.hxx
index 44aaddf9ad9b..d43335928fb7 100644
--- a/sw/source/filter/ww8/ww8scan.hxx
+++ b/sw/source/filter/ww8/ww8scan.hxx
@@ -38,7 +38,7 @@
#include "sortedarray.hxx"
#include "ww8struc.hxx"
-#include <types.hxx>
+#include "types.hxx"
#include <unomid.h>