[Libreoffice-commits] core.git: sw/source
Mike Kaganski
mike.kaganski at collabora.com
Fri Oct 6 05:47:15 UTC 2017
sw/source/filter/ascii/ascatr.cxx | 2 +-
sw/source/filter/ascii/wrtasc.cxx | 2 +-
sw/source/filter/html/htmlatr.cxx | 8 ++++----
sw/source/filter/html/htmlcss1.cxx | 2 +-
sw/source/filter/html/htmlfld.cxx | 4 ++--
sw/source/filter/html/htmlgrin.cxx | 6 +++---
sw/source/filter/html/htmltabw.cxx | 4 ++--
sw/source/filter/html/swhtml.cxx | 8 ++++----
sw/source/filter/html/wrthtml.cxx | 6 +++---
sw/source/filter/xml/wrtxml.cxx | 2 +-
sw/source/filter/xml/xmlexp.cxx | 4 ++--
sw/source/filter/xml/xmlfonte.cxx | 4 ++--
12 files changed, 26 insertions(+), 26 deletions(-)
New commits:
commit b567cfb980435df131d776915bce9152135bdf0f
Author: Mike Kaganski <mike.kaganski at collabora.com>
Date: Fri Oct 6 08:44:15 2017 +0300
filters: always use "" for includes in current source's directory
For rationale, see commit 633f405701fc5cadfa73e950f7a8c122ad01c149
Change-Id: I9a43caca12cc5755ffc5c4fdf16ac7e0660edf2e
Reviewed-on: https://gerrit.libreoffice.org/43180
Reviewed-by: Mike Kaganski <mike.kaganski at collabora.com>
Tested-by: Mike Kaganski <mike.kaganski at collabora.com>
diff --git a/sw/source/filter/ascii/ascatr.cxx b/sw/source/filter/ascii/ascatr.cxx
index 77b57e4f01dd..4d7bcf246adc 100644
--- a/sw/source/filter/ascii/ascatr.cxx
+++ b/sw/source/filter/ascii/ascatr.cxx
@@ -24,7 +24,7 @@
#include <pam.hxx>
#include <doc.hxx>
#include <ndtxt.hxx>
-#include <wrtasc.hxx>
+#include "wrtasc.hxx"
#include <txatbase.hxx>
#include <fchrfmt.hxx>
#include <txtfld.hxx>
diff --git a/sw/source/filter/ascii/wrtasc.cxx b/sw/source/filter/ascii/wrtasc.cxx
index 99567ff29172..96b617426483 100644
--- a/sw/source/filter/ascii/wrtasc.cxx
+++ b/sw/source/filter/ascii/wrtasc.cxx
@@ -27,7 +27,7 @@
#include <docary.hxx>
#include <fmtcntnt.hxx>
#include <frmfmt.hxx>
-#include <wrtasc.hxx>
+#include "wrtasc.hxx"
#include <strings.hrc>
diff --git a/sw/source/filter/html/htmlatr.cxx b/sw/source/filter/html/htmlatr.cxx
index 2a09be851359..ec875b33f9c4 100644
--- a/sw/source/filter/html/htmlatr.cxx
+++ b/sw/source/filter/html/htmlatr.cxx
@@ -69,10 +69,10 @@
#include <swtable.hxx>
#include "fldbas.hxx"
#include <breakit.hxx>
-#include <htmlatr.hxx>
-#include <htmlnum.hxx>
-#include <wrthtml.hxx>
-#include <htmlfly.hxx>
+#include "htmlatr.hxx"
+#include "htmlnum.hxx"
+#include "wrthtml.hxx"
+#include "htmlfly.hxx"
#include <numrule.hxx>
#include <rtl/strbuf.hxx>
diff --git a/sw/source/filter/html/htmlcss1.cxx b/sw/source/filter/html/htmlcss1.cxx
index 35ce89bab0d2..09301efdadd2 100644
--- a/sw/source/filter/html/htmlcss1.cxx
+++ b/sw/source/filter/html/htmlcss1.cxx
@@ -60,7 +60,7 @@
#include "htmlnum.hxx"
#include "swhtml.hxx"
#include <numrule.hxx>
-#include <css1atr.hxx>
+#include "css1atr.hxx"
using namespace ::com::sun::star;
diff --git a/sw/source/filter/html/htmlfld.cxx b/sw/source/filter/html/htmlfld.cxx
index f1286dce22b2..073b10a48c80 100644
--- a/sw/source/filter/html/htmlfld.cxx
+++ b/sw/source/filter/html/htmlfld.cxx
@@ -31,8 +31,8 @@
#include <fldbas.hxx>
#include <docufld.hxx>
#include <flddat.hxx>
-#include <htmlfld.hxx>
-#include <swhtml.hxx>
+#include "htmlfld.hxx"
+#include "swhtml.hxx"
using namespace nsSwDocInfoSubType;
using namespace ::com::sun::star;
diff --git a/sw/source/filter/html/htmlgrin.cxx b/sw/source/filter/html/htmlgrin.cxx
index 5eb3c28e07f8..2f6a0b26cf8b 100644
--- a/sw/source/filter/html/htmlgrin.cxx
+++ b/sw/source/filter/html/htmlgrin.cxx
@@ -62,9 +62,9 @@
#include <poolfmt.hxx>
#include <IMark.hxx>
#include <ndgrf.hxx>
-#include <htmlnum.hxx>
-#include <swcss1.hxx>
-#include <swhtml.hxx>
+#include "htmlnum.hxx"
+#include "swcss1.hxx"
+#include "swhtml.hxx"
#include <numrule.hxx>
#include <vcl/graphicfilter.hxx>
diff --git a/sw/source/filter/html/htmltabw.cxx b/sw/source/filter/html/htmltabw.cxx
index 9f9f61a9d9e1..07b2f7bc9868 100644
--- a/sw/source/filter/html/htmltabw.cxx
+++ b/sw/source/filter/html/htmltabw.cxx
@@ -41,8 +41,8 @@
#include <poolfmt.hxx>
#include <swtable.hxx>
#include <htmltbl.hxx>
-#include <htmlnum.hxx>
-#include <wrthtml.hxx>
+#include "htmlnum.hxx"
+#include "wrthtml.hxx"
#include <wrtswtbl.hxx>
#ifdef DBG_UTIL
#include <viewsh.hxx>
diff --git a/sw/source/filter/html/swhtml.cxx b/sw/source/filter/html/swhtml.cxx
index 94e5ba298b4e..07801186d85a 100644
--- a/sw/source/filter/html/swhtml.cxx
+++ b/sw/source/filter/html/swhtml.cxx
@@ -99,11 +99,11 @@
#include <docsh.hxx>
#include <editsh.hxx>
#include <docufld.hxx>
-#include <swcss1.hxx>
+#include "swcss1.hxx"
#include <fltini.hxx>
#include <htmltbl.hxx>
-#include <htmlnum.hxx>
-#include <swhtml.hxx>
+#include "htmlnum.hxx"
+#include "swhtml.hxx"
#include <linkenum.hxx>
#include <breakit.hxx>
#include <SwAppletImpl.hxx>
@@ -112,7 +112,7 @@
#include <strings.hrc>
#include <swerror.h>
-#include <css1atr.hxx>
+#include "css1atr.hxx"
#define FONTSIZE_MASK 7
diff --git a/sw/source/filter/html/wrthtml.cxx b/sw/source/filter/html/wrthtml.cxx
index eaf106ade3cf..bd3822284981 100644
--- a/sw/source/filter/html/wrthtml.cxx
+++ b/sw/source/filter/html/wrthtml.cxx
@@ -65,9 +65,9 @@
#include <fldbas.hxx>
#include <fmtclds.hxx>
#include <docsh.hxx>
-#include <wrthtml.hxx>
-#include <htmlnum.hxx>
-#include <htmlfly.hxx>
+#include "wrthtml.hxx"
+#include "htmlnum.hxx"
+#include "htmlfly.hxx"
#include <swmodule.hxx>
#include <strings.hrc>
#include <swerror.h>
diff --git a/sw/source/filter/xml/wrtxml.cxx b/sw/source/filter/xml/wrtxml.cxx
index 651b47a00c7d..00562c6f7a25 100644
--- a/sw/source/filter/xml/wrtxml.cxx
+++ b/sw/source/filter/xml/wrtxml.cxx
@@ -48,7 +48,7 @@
#include <unotools/ucbstreamhelper.hxx>
#include <swerror.h>
-#include <wrtxml.hxx>
+#include "wrtxml.hxx"
#include <strings.hrc>
#include <comphelper/documentconstants.hxx>
diff --git a/sw/source/filter/xml/xmlexp.cxx b/sw/source/filter/xml/xmlexp.cxx
index d340e9eecc6b..d4827e1ba4b6 100644
--- a/sw/source/filter/xml/xmlexp.cxx
+++ b/sw/source/filter/xml/xmlexp.cxx
@@ -49,8 +49,8 @@
#include <docstat.hxx>
#include <swerror.h>
#include <unotext.hxx>
-#include <xmltexte.hxx>
-#include <xmlexp.hxx>
+#include "xmltexte.hxx"
+#include "xmlexp.hxx"
#include <sfx2/viewsh.hxx>
#include <comphelper/processfactory.hxx>
#include <docary.hxx>
diff --git a/sw/source/filter/xml/xmlfonte.cxx b/sw/source/filter/xml/xmlfonte.cxx
index 0cd7aecd50de..9edf2f7252a3 100644
--- a/sw/source/filter/xml/xmlfonte.cxx
+++ b/sw/source/filter/xml/xmlfonte.cxx
@@ -22,8 +22,8 @@
#include <editeng/fontitem.hxx>
#include <unotext.hxx>
#include <doc.hxx>
-#include <xmlexp.hxx>
-#include <xmlimp.hxx>
+#include "xmlexp.hxx"
+#include "xmlimp.hxx"
#include <IDocumentSettingAccess.hxx>
using namespace ::com::sun::star::uno;
More information about the Libreoffice-commits
mailing list