summaryrefslogtreecommitdiff
path: root/writerfilter/source/dmapper/DomainMapperTableManager.cxx
diff options
context:
space:
mode:
authorMike Kaganski <mike.kaganski@collabora.com>2017-10-04 19:01:14 +0300
committerMike Kaganski <mike.kaganski@collabora.com>2017-10-05 05:14:26 +0200
commit633f405701fc5cadfa73e950f7a8c122ad01c149 (patch)
tree75fb46193219221546b879b886e7d9e4586bb185 /writerfilter/source/dmapper/DomainMapperTableManager.cxx
parent7901ede8a63f41aea707bd19c22f834253161378 (diff)
writerfilter: consistently use "" and <> in include directives
[cpp.include] tells that includes in <> are searched in implementation-defined places; includes in "" are searched in other implementation-defined places, and is unsuccessful, then as if they were in <>. MS VisualStudio IDE uses paths configured for the project for includes in <>, and starts with current file paths for includes in "". So, using <> for includes in current source file's directory missing from configured project paths makes IDE show unsuccessful includes and unknown identifiers. This fixes includes in writerfilter source directory. Change-Id: I0bc1147aa68c305afd0c119418f07b655783a466 Reviewed-on: https://gerrit.libreoffice.org/43138 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Thorsten Behrens <Thorsten.Behrens@CIB.de> Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com>
Diffstat (limited to 'writerfilter/source/dmapper/DomainMapperTableManager.cxx')
-rw-r--r--writerfilter/source/dmapper/DomainMapperTableManager.cxx16
1 files changed, 8 insertions, 8 deletions
diff --git a/writerfilter/source/dmapper/DomainMapperTableManager.cxx b/writerfilter/source/dmapper/DomainMapperTableManager.cxx
index fd94ebb8f873..aba8a2fd4adc 100644
--- a/writerfilter/source/dmapper/DomainMapperTableManager.cxx
+++ b/writerfilter/source/dmapper/DomainMapperTableManager.cxx
@@ -17,13 +17,13 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
#include <boost/optional.hpp>
-#include <DomainMapperTableManager.hxx>
-#include <BorderHandler.hxx>
-#include <CellColorHandler.hxx>
-#include <CellMarginHandler.hxx>
-#include <ConversionHelper.hxx>
-#include <MeasureHandler.hxx>
-#include <TDefTableHandler.hxx>
+#include "DomainMapperTableManager.hxx"
+#include "BorderHandler.hxx"
+#include "CellColorHandler.hxx"
+#include "CellMarginHandler.hxx"
+#include "ConversionHelper.hxx"
+#include "MeasureHandler.hxx"
+#include "TDefTableHandler.hxx"
#include <com/sun/star/text/HoriOrientation.hpp>
#include <com/sun/star/text/SizeType.hpp>
#include <com/sun/star/text/TableColumnSeparator.hpp>
@@ -31,7 +31,7 @@
#include <com/sun/star/text/WritingMode2.hpp>
#include <o3tl/numeric.hxx>
#include <ooxml/resourceids.hxx>
-#include <DomainMapper.hxx>
+#include "DomainMapper.hxx"
#include <rtl/math.hxx>
namespace writerfilter {