writerfilter/source/dmapper/BorderHandler.cxx | 8 +++--- writerfilter/source/dmapper/CellColorHandler.cxx | 8 +++--- writerfilter/source/dmapper/CellMarginHandler.cxx | 6 ++-- writerfilter/source/dmapper/ConversionHelper.cxx | 2 - writerfilter/source/dmapper/DomainMapper.cxx | 20 +++++++-------- writerfilter/source/dmapper/DomainMapperTableHandler.cxx | 14 +++++----- writerfilter/source/dmapper/DomainMapperTableHandler.hxx | 4 +-- writerfilter/source/dmapper/DomainMapperTableManager.cxx | 16 ++++++------ writerfilter/source/dmapper/DomainMapperTableManager.hxx | 2 - writerfilter/source/dmapper/DomainMapper_Impl.cxx | 10 +++---- writerfilter/source/dmapper/DomainMapper_Impl.hxx | 2 - writerfilter/source/dmapper/FontTable.cxx | 2 - writerfilter/source/dmapper/GraphicImport.cxx | 2 - writerfilter/source/dmapper/LatentStyleHandler.cxx | 2 - writerfilter/source/dmapper/MeasureHandler.cxx | 6 ++-- writerfilter/source/dmapper/ModelEventListener.cxx | 4 +-- writerfilter/source/dmapper/NumberingManager.hxx | 2 - writerfilter/source/dmapper/OLEHandler.cxx | 6 ++-- writerfilter/source/dmapper/PropertyMap.cxx | 6 ++-- writerfilter/source/dmapper/SdtHelper.cxx | 2 - writerfilter/source/dmapper/SdtHelper.hxx | 2 - writerfilter/source/dmapper/SectionColumnHandler.cxx | 6 ++-- writerfilter/source/dmapper/SettingsTable.cxx | 6 ++-- writerfilter/source/dmapper/SmartTagHandler.cxx | 2 - writerfilter/source/dmapper/StyleSheetTable.cxx | 12 ++++----- writerfilter/source/dmapper/StyleSheetTable.hxx | 2 - writerfilter/source/dmapper/TDefTableHandler.cxx | 6 ++-- writerfilter/source/dmapper/TableManager.cxx | 8 +++--- writerfilter/source/dmapper/TableManager.hxx | 4 +-- writerfilter/source/dmapper/TablePositionHandler.cxx | 4 +-- writerfilter/source/dmapper/TablePropertiesHandler.cxx | 2 - writerfilter/source/dmapper/TablePropertiesHandler.hxx | 2 - writerfilter/source/dmapper/TblStylePrHandler.cxx | 4 +-- writerfilter/source/dmapper/TblStylePrHandler.hxx | 2 - writerfilter/source/dmapper/TextEffectsHandler.cxx | 2 - writerfilter/source/dmapper/TextEffectsHandler.hxx | 2 - writerfilter/source/dmapper/ThemeTable.cxx | 2 - writerfilter/source/dmapper/TrackChangesHandler.cxx | 6 ++-- writerfilter/source/dmapper/TrackChangesHandler.hxx | 2 - writerfilter/source/dmapper/domainmapperfactory.cxx | 2 - writerfilter/source/dmapper/util.cxx | 2 - writerfilter/source/ooxml/OOXMLDocumentImpl.cxx | 2 - writerfilter/source/ooxml/OOXMLStreamImpl.cxx | 2 - writerfilter/source/rtftok/rtfcharsets.cxx | 2 - writerfilter/source/rtftok/rtfcontrolwords.cxx | 2 - writerfilter/source/rtftok/rtfdispatchdestination.cxx | 10 +++---- writerfilter/source/rtftok/rtfdispatchflag.cxx | 6 ++-- writerfilter/source/rtftok/rtfdispatchsymbol.cxx | 6 ++-- writerfilter/source/rtftok/rtfdispatchvalue.cxx | 10 +++---- writerfilter/source/rtftok/rtfdocumentfactory.cxx | 2 - writerfilter/source/rtftok/rtfdocumentimpl.cxx | 12 ++++----- writerfilter/source/rtftok/rtfdocumentimpl.hxx | 8 +++--- writerfilter/source/rtftok/rtflistener.hxx | 2 - writerfilter/source/rtftok/rtflookahead.cxx | 2 - writerfilter/source/rtftok/rtflookahead.hxx | 4 +-- writerfilter/source/rtftok/rtfreferenceproperties.cxx | 2 - writerfilter/source/rtftok/rtfreferenceproperties.hxx | 2 - writerfilter/source/rtftok/rtfreferencetable.cxx | 2 - writerfilter/source/rtftok/rtfsdrimport.cxx | 4 +-- writerfilter/source/rtftok/rtfsdrimport.hxx | 2 - writerfilter/source/rtftok/rtfskipdestination.cxx | 2 - writerfilter/source/rtftok/rtfskipdestination.hxx | 2 - writerfilter/source/rtftok/rtfsprm.cxx | 2 - writerfilter/source/rtftok/rtfsprm.hxx | 2 - writerfilter/source/rtftok/rtftokenizer.cxx | 4 +-- writerfilter/source/rtftok/rtftokenizer.hxx | 2 - writerfilter/source/rtftok/rtfvalue.cxx | 4 +-- 67 files changed, 152 insertions(+), 152 deletions(-)
New commits: commit 633f405701fc5cadfa73e950f7a8c122ad01c149 Author: Mike Kaganski <mike.kagan...@collabora.com> Date: Wed Oct 4 19:01:14 2017 +0300 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 <c...@libreoffice.org> Reviewed-by: Thorsten Behrens <thorsten.behr...@cib.de> Reviewed-by: Mike Kaganski <mike.kagan...@collabora.com> diff --git a/writerfilter/source/dmapper/BorderHandler.cxx b/writerfilter/source/dmapper/BorderHandler.cxx index 61825ad6ff0b..30117b24f16a 100644 --- a/writerfilter/source/dmapper/BorderHandler.cxx +++ b/writerfilter/source/dmapper/BorderHandler.cxx @@ -16,10 +16,10 @@ * except in compliance with the License. You may obtain a copy of * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ -#include <BorderHandler.hxx> -#include <TDefTableHandler.hxx> -#include <PropertyMap.hxx> -#include <ConversionHelper.hxx> +#include "BorderHandler.hxx" +#include "TDefTableHandler.hxx" +#include "PropertyMap.hxx" +#include "ConversionHelper.hxx" #include <com/sun/star/table/BorderLine2.hpp> #include <ooxml/resourceids.hxx> #include <filter/msfilter/util.hxx> diff --git a/writerfilter/source/dmapper/CellColorHandler.cxx b/writerfilter/source/dmapper/CellColorHandler.cxx index e5a604ed589c..5bd27fd272c1 100644 --- a/writerfilter/source/dmapper/CellColorHandler.cxx +++ b/writerfilter/source/dmapper/CellColorHandler.cxx @@ -16,10 +16,10 @@ * except in compliance with the License. You may obtain a copy of * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ -#include <CellColorHandler.hxx> -#include <PropertyMap.hxx> -#include <ConversionHelper.hxx> -#include <TDefTableHandler.hxx> +#include "CellColorHandler.hxx" +#include "PropertyMap.hxx" +#include "ConversionHelper.hxx" +#include "TDefTableHandler.hxx" #include <ooxml/resourceids.hxx> #include <com/sun/star/drawing/FillStyle.hpp> #include <com/sun/star/drawing/ShadingPattern.hpp> diff --git a/writerfilter/source/dmapper/CellMarginHandler.cxx b/writerfilter/source/dmapper/CellMarginHandler.cxx index 1055b2745c5d..d1e20d2ee3a8 100644 --- a/writerfilter/source/dmapper/CellMarginHandler.cxx +++ b/writerfilter/source/dmapper/CellMarginHandler.cxx @@ -16,9 +16,9 @@ * except in compliance with the License. You may obtain a copy of * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ -#include <CellMarginHandler.hxx> -#include <PropertyMap.hxx> -#include <ConversionHelper.hxx> +#include "CellMarginHandler.hxx" +#include "PropertyMap.hxx" +#include "ConversionHelper.hxx" #include <ooxml/resourceids.hxx> #include <comphelper/propertysequence.hxx> #include <comphelper/sequence.hxx> diff --git a/writerfilter/source/dmapper/ConversionHelper.cxx b/writerfilter/source/dmapper/ConversionHelper.cxx index 6b33c6c56f91..3b1ed18eeacc 100644 --- a/writerfilter/source/dmapper/ConversionHelper.cxx +++ b/writerfilter/source/dmapper/ConversionHelper.cxx @@ -16,7 +16,7 @@ * except in compliance with the License. You may obtain a copy of * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ -#include <ConversionHelper.hxx> +#include "ConversionHelper.hxx" #include <com/sun/star/table/BorderLine2.hpp> #include <com/sun/star/table/BorderLineStyle.hpp> #include <com/sun/star/lang/Locale.hpp> diff --git a/writerfilter/source/dmapper/DomainMapper.cxx b/writerfilter/source/dmapper/DomainMapper.cxx index 1423263274ab..a158615c583e 100644 --- a/writerfilter/source/dmapper/DomainMapper.cxx +++ b/writerfilter/source/dmapper/DomainMapper.cxx @@ -19,12 +19,12 @@ #include "PageBordersHandler.hxx" #include "util.hxx" -#include <SdtHelper.hxx> -#include <TDefTableHandler.hxx> -#include <DomainMapper_Impl.hxx> -#include <ConversionHelper.hxx> -#include <ModelEventListener.hxx> -#include <MeasureHandler.hxx> +#include "SdtHelper.hxx" +#include "TDefTableHandler.hxx" +#include "DomainMapper_Impl.hxx" +#include "ConversionHelper.hxx" +#include "ModelEventListener.hxx" +#include "MeasureHandler.hxx" #include <i18nlangtag/languagetag.hxx> #include <i18nutil/paper.hxx> #include <oox/token/tokens.hxx> @@ -70,10 +70,10 @@ #include <sfx2/DocumentMetadataAccess.hxx> #include <unotools/mediadescriptor.hxx> -#include <TextEffectsHandler.hxx> -#include <CellColorHandler.hxx> -#include <SectionColumnHandler.hxx> -#include <GraphicHelpers.hxx> +#include "TextEffectsHandler.hxx" +#include "CellColorHandler.hxx" +#include "SectionColumnHandler.hxx" +#include "GraphicHelpers.hxx" #include <dmapper/GraphicZOrderHelper.hxx> using namespace ::com::sun::star; diff --git a/writerfilter/source/dmapper/DomainMapperTableHandler.cxx b/writerfilter/source/dmapper/DomainMapperTableHandler.cxx index 22ba665a8e02..976adad91f1d 100644 --- a/writerfilter/source/dmapper/DomainMapperTableHandler.cxx +++ b/writerfilter/source/dmapper/DomainMapperTableHandler.cxx @@ -16,9 +16,9 @@ * except in compliance with the License. You may obtain a copy of * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ -#include <DomainMapperTableHandler.hxx> -#include <DomainMapper_Impl.hxx> -#include <StyleSheetTable.hxx> +#include "DomainMapperTableHandler.hxx" +#include "DomainMapper_Impl.hxx" +#include "StyleSheetTable.hxx" #include <com/sun/star/beans/XPropertyState.hpp> #include <com/sun/star/container/XEnumerationAccess.hpp> #include <com/sun/star/table/TableBorderDistances.hpp> @@ -32,14 +32,14 @@ #include <com/sun/star/text/VertOrientation.hpp> #include <com/sun/star/text/XTextRangeCompare.hpp> #include <com/sun/star/style/ParagraphAdjust.hpp> -#include <TablePositionHandler.hxx> -#include <ConversionHelper.hxx> -#include <util.hxx> +#include "TablePositionHandler.hxx" +#include "ConversionHelper.hxx" +#include "util.hxx" #include <osl/diagnose.h> #include <comphelper/sequence.hxx> #ifdef DEBUG_WRITERFILTER -#include <PropertyMapHelper.hxx> +#include "PropertyMapHelper.hxx" #include <rtl/ustring.hxx> #endif diff --git a/writerfilter/source/dmapper/DomainMapperTableHandler.hxx b/writerfilter/source/dmapper/DomainMapperTableHandler.hxx index 85f84c78ded9..814566e3bfd8 100644 --- a/writerfilter/source/dmapper/DomainMapperTableHandler.hxx +++ b/writerfilter/source/dmapper/DomainMapperTableHandler.hxx @@ -19,8 +19,8 @@ #ifndef INCLUDED_WRITERFILTER_SOURCE_DMAPPER_DOMAINMAPPERTABLEHANDLER_HXX #define INCLUDED_WRITERFILTER_SOURCE_DMAPPER_DOMAINMAPPERTABLEHANDLER_HXX -#include <TableManager.hxx> -#include <PropertyMap.hxx> +#include "TableManager.hxx" +#include "PropertyMap.hxx" #include <vector> #include <com/sun/star/text/XTextAppendAndConvert.hpp> 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 { diff --git a/writerfilter/source/dmapper/DomainMapperTableManager.hxx b/writerfilter/source/dmapper/DomainMapperTableManager.hxx index 5a68ad3893df..77db084634dc 100644 --- a/writerfilter/source/dmapper/DomainMapperTableManager.hxx +++ b/writerfilter/source/dmapper/DomainMapperTableManager.hxx @@ -22,7 +22,7 @@ #include "TablePropertiesHandler.hxx" #include "TablePositionHandler.hxx" -#include <TableManager.hxx> +#include "TableManager.hxx" #include "PropertyMap.hxx" #include "StyleSheetTable.hxx" #include <com/sun/star/text/XTextRange.hpp> diff --git a/writerfilter/source/dmapper/DomainMapper_Impl.cxx b/writerfilter/source/dmapper/DomainMapper_Impl.cxx index b5572dc484aa..029ab83ee36d 100644 --- a/writerfilter/source/dmapper/DomainMapper_Impl.cxx +++ b/writerfilter/source/dmapper/DomainMapper_Impl.cxx @@ -21,10 +21,10 @@ #include <com/sun/star/beans/XPropertySet.hpp> #include <com/sun/star/beans/XPropertyContainer.hpp> #include <com/sun/star/document/XDocumentProperties.hpp> -#include <DomainMapper_Impl.hxx> -#include <ConversionHelper.hxx> -#include <SdtHelper.hxx> -#include <DomainMapperTableHandler.hxx> +#include "DomainMapper_Impl.hxx" +#include "ConversionHelper.hxx" +#include "SdtHelper.hxx" +#include "DomainMapperTableHandler.hxx" #include <com/sun/star/uno/XComponentContext.hpp> #include <com/sun/star/graphic/XGraphic.hpp> #include <com/sun/star/beans/XPropertyState.hpp> @@ -71,7 +71,7 @@ #include <oox/mathml/import.hxx> #include <rtl/uri.hxx> -#include <GraphicHelpers.hxx> +#include "GraphicHelpers.hxx" #include <dmapper/GraphicZOrderHelper.hxx> #include <oox/token/tokens.hxx> diff --git a/writerfilter/source/dmapper/DomainMapper_Impl.hxx b/writerfilter/source/dmapper/DomainMapper_Impl.hxx index 3d3296396b13..208318c81c12 100644 --- a/writerfilter/source/dmapper/DomainMapper_Impl.hxx +++ b/writerfilter/source/dmapper/DomainMapper_Impl.hxx @@ -36,7 +36,7 @@ #include <ooxml/resourceids.hxx> -#include <DomainMapper.hxx> +#include "DomainMapper.hxx" #include "DomainMapperTableManager.hxx" #include "DomainMapperTableHandler.hxx" #include "PropertyMap.hxx" diff --git a/writerfilter/source/dmapper/FontTable.cxx b/writerfilter/source/dmapper/FontTable.cxx index f2ddedcf22c9..70b425e91fae 100644 --- a/writerfilter/source/dmapper/FontTable.cxx +++ b/writerfilter/source/dmapper/FontTable.cxx @@ -17,7 +17,7 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ -#include <FontTable.hxx> +#include "FontTable.hxx" #include <ooxml/resourceids.hxx> #include <vector> #include <osl/file.hxx> diff --git a/writerfilter/source/dmapper/GraphicImport.cxx b/writerfilter/source/dmapper/GraphicImport.cxx index 2173a015b173..0a81989d392d 100644 --- a/writerfilter/source/dmapper/GraphicImport.cxx +++ b/writerfilter/source/dmapper/GraphicImport.cxx @@ -54,7 +54,7 @@ #include <oox/drawingml/drawingmltypes.hxx> -#include <DomainMapper.hxx> +#include "DomainMapper.hxx" #include <dmapper/GraphicZOrderHelper.hxx> #include <ooxml/resourceids.hxx> diff --git a/writerfilter/source/dmapper/LatentStyleHandler.cxx b/writerfilter/source/dmapper/LatentStyleHandler.cxx index cfd01c770cc7..db42aab7e76b 100644 --- a/writerfilter/source/dmapper/LatentStyleHandler.cxx +++ b/writerfilter/source/dmapper/LatentStyleHandler.cxx @@ -6,7 +6,7 @@ * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ -#include <LatentStyleHandler.hxx> +#include "LatentStyleHandler.hxx" #include <ooxml/resourceids.hxx> namespace writerfilter diff --git a/writerfilter/source/dmapper/MeasureHandler.cxx b/writerfilter/source/dmapper/MeasureHandler.cxx index 69a824826324..2e949fe0f393 100644 --- a/writerfilter/source/dmapper/MeasureHandler.cxx +++ b/writerfilter/source/dmapper/MeasureHandler.cxx @@ -16,9 +16,9 @@ * except in compliance with the License. You may obtain a copy of * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ -#include <MeasureHandler.hxx> -#include <PropertyMap.hxx> -#include <ConversionHelper.hxx> +#include "MeasureHandler.hxx" +#include "PropertyMap.hxx" +#include "ConversionHelper.hxx" #include <ooxml/resourceids.hxx> #include <osl/diagnose.h> #include <com/sun/star/text/SizeType.hpp> diff --git a/writerfilter/source/dmapper/ModelEventListener.cxx b/writerfilter/source/dmapper/ModelEventListener.cxx index 4c59ba3b38ba..2b403d435676 100644 --- a/writerfilter/source/dmapper/ModelEventListener.cxx +++ b/writerfilter/source/dmapper/ModelEventListener.cxx @@ -16,8 +16,8 @@ * except in compliance with the License. You may obtain a copy of * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ -#include <ModelEventListener.hxx> -#include <PropertyIds.hxx> +#include "ModelEventListener.hxx" +#include "PropertyIds.hxx" #include <rtl/ustring.hxx> #include <com/sun/star/document/XEventBroadcaster.hpp> #include <com/sun/star/text/XDocumentIndex.hpp> diff --git a/writerfilter/source/dmapper/NumberingManager.hxx b/writerfilter/source/dmapper/NumberingManager.hxx index 624e4fb1f082..026164122e85 100644 --- a/writerfilter/source/dmapper/NumberingManager.hxx +++ b/writerfilter/source/dmapper/NumberingManager.hxx @@ -22,7 +22,7 @@ #include "PropertyMap.hxx" -#include <DomainMapper.hxx> +#include "DomainMapper.hxx" #include "LoggedResources.hxx" #include <editeng/numitem.hxx> diff --git a/writerfilter/source/dmapper/OLEHandler.cxx b/writerfilter/source/dmapper/OLEHandler.cxx index 3bf20e91c9cd..1b18578a4171 100644 --- a/writerfilter/source/dmapper/OLEHandler.cxx +++ b/writerfilter/source/dmapper/OLEHandler.cxx @@ -16,9 +16,9 @@ * except in compliance with the License. You may obtain a copy of * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ -#include <OLEHandler.hxx> -#include <DomainMapper.hxx> -#include <PropertyMap.hxx> +#include "OLEHandler.hxx" +#include "DomainMapper.hxx" +#include "PropertyMap.hxx" #include "GraphicHelpers.hxx" #include <editeng/unoprnms.hxx> diff --git a/writerfilter/source/dmapper/PropertyMap.cxx b/writerfilter/source/dmapper/PropertyMap.cxx index be506993b9df..1cf71588ce05 100644 --- a/writerfilter/source/dmapper/PropertyMap.cxx +++ b/writerfilter/source/dmapper/PropertyMap.cxx @@ -16,10 +16,10 @@ * except in compliance with the License. You may obtain a copy of * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ -#include <PropertyMap.hxx> +#include "PropertyMap.hxx" #include <ooxml/resourceids.hxx> -#include <DomainMapper_Impl.hxx> -#include <ConversionHelper.hxx> +#include "DomainMapper_Impl.hxx" +#include "ConversionHelper.hxx" #include <i18nutil/paper.hxx> #include <osl/diagnose.h> #include <rtl/ustring.hxx> diff --git a/writerfilter/source/dmapper/SdtHelper.cxx b/writerfilter/source/dmapper/SdtHelper.cxx index c00fc9ea6a88..2e93f1b98c83 100644 --- a/writerfilter/source/dmapper/SdtHelper.cxx +++ b/writerfilter/source/dmapper/SdtHelper.cxx @@ -7,7 +7,7 @@ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ -#include <SdtHelper.hxx> +#include "SdtHelper.hxx" #include <com/sun/star/drawing/XControlShape.hpp> #include <com/sun/star/lang/WrappedTargetRuntimeException.hpp> #include <com/sun/star/text/VertOrientation.hpp> diff --git a/writerfilter/source/dmapper/SdtHelper.hxx b/writerfilter/source/dmapper/SdtHelper.hxx index 595071377cf0..b6691b55770b 100644 --- a/writerfilter/source/dmapper/SdtHelper.hxx +++ b/writerfilter/source/dmapper/SdtHelper.hxx @@ -17,7 +17,7 @@ #include <com/sun/star/lang/XMultiServiceFactory.hpp> #include <rtl/ustrbuf.hxx> -#include <DomainMapper_Impl.hxx> +#include "DomainMapper_Impl.hxx" namespace com { diff --git a/writerfilter/source/dmapper/SectionColumnHandler.cxx b/writerfilter/source/dmapper/SectionColumnHandler.cxx index d731e193d25a..320708b80a68 100644 --- a/writerfilter/source/dmapper/SectionColumnHandler.cxx +++ b/writerfilter/source/dmapper/SectionColumnHandler.cxx @@ -16,9 +16,9 @@ * except in compliance with the License. You may obtain a copy of * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ -#include <SectionColumnHandler.hxx> -#include <PropertyMap.hxx> -#include <ConversionHelper.hxx> +#include "SectionColumnHandler.hxx" +#include "PropertyMap.hxx" +#include "ConversionHelper.hxx" #include <ooxml/resourceids.hxx> #include <osl/diagnose.h> diff --git a/writerfilter/source/dmapper/SettingsTable.cxx b/writerfilter/source/dmapper/SettingsTable.cxx index a5f96231474b..9c5fed0ec78a 100644 --- a/writerfilter/source/dmapper/SettingsTable.cxx +++ b/writerfilter/source/dmapper/SettingsTable.cxx @@ -17,7 +17,7 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ -#include <SettingsTable.hxx> +#include "SettingsTable.hxx" #include <vector> @@ -29,8 +29,8 @@ #include <com/sun/star/style/XStyleFamiliesSupplier.hpp> #include <comphelper/sequence.hxx> #include <ooxml/resourceids.hxx> -#include <ConversionHelper.hxx> -#include <DomainMapper.hxx> +#include "ConversionHelper.hxx" +#include "DomainMapper.hxx" #include "util.hxx" using namespace com::sun::star; diff --git a/writerfilter/source/dmapper/SmartTagHandler.cxx b/writerfilter/source/dmapper/SmartTagHandler.cxx index 4a1ee2b4cfdf..2c6780737488 100644 --- a/writerfilter/source/dmapper/SmartTagHandler.cxx +++ b/writerfilter/source/dmapper/SmartTagHandler.cxx @@ -7,7 +7,7 @@ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ -#include <SmartTagHandler.hxx> +#include "SmartTagHandler.hxx" #include <com/sun/star/rdf/Literal.hpp> #include <com/sun/star/rdf/URI.hpp> diff --git a/writerfilter/source/dmapper/StyleSheetTable.cxx b/writerfilter/source/dmapper/StyleSheetTable.cxx index 8335ecd61d9d..1e8ab405f408 100644 --- a/writerfilter/source/dmapper/StyleSheetTable.cxx +++ b/writerfilter/source/dmapper/StyleSheetTable.cxx @@ -16,13 +16,13 @@ * except in compliance with the License. You may obtain a copy of * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ -#include <StyleSheetTable.hxx> +#include "StyleSheetTable.hxx" #include "util.hxx" -#include <NumberingManager.hxx> -#include <ConversionHelper.hxx> -#include <TblStylePrHandler.hxx> -#include <BorderHandler.hxx> -#include <LatentStyleHandler.hxx> +#include "NumberingManager.hxx" +#include "ConversionHelper.hxx" +#include "TblStylePrHandler.hxx" +#include "BorderHandler.hxx" +#include "LatentStyleHandler.hxx" #include <ooxml/resourceids.hxx> #include <vector> #include <iterator> diff --git a/writerfilter/source/dmapper/StyleSheetTable.hxx b/writerfilter/source/dmapper/StyleSheetTable.hxx index bbaae80c5241..e09dfa6384d3 100644 --- a/writerfilter/source/dmapper/StyleSheetTable.hxx +++ b/writerfilter/source/dmapper/StyleSheetTable.hxx @@ -22,7 +22,7 @@ #include <memory> #include "TblStylePrHandler.hxx" -#include <DomainMapper.hxx> +#include "DomainMapper.hxx" #include <com/sun/star/lang/XComponent.hpp> #include <com/sun/star/beans/PropertyValues.hpp> #include "PropertyMap.hxx" diff --git a/writerfilter/source/dmapper/TDefTableHandler.cxx b/writerfilter/source/dmapper/TDefTableHandler.cxx index 75b7bbb4be02..0f560e452453 100644 --- a/writerfilter/source/dmapper/TDefTableHandler.cxx +++ b/writerfilter/source/dmapper/TDefTableHandler.cxx @@ -16,9 +16,9 @@ * except in compliance with the License. You may obtain a copy of * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ -#include <TDefTableHandler.hxx> -#include <PropertyMap.hxx> -#include <ConversionHelper.hxx> +#include "TDefTableHandler.hxx" +#include "PropertyMap.hxx" +#include "ConversionHelper.hxx" #include <ooxml/resourceids.hxx> #include <filter/msfilter/util.hxx> #include <com/sun/star/table/BorderLine2.hpp> diff --git a/writerfilter/source/dmapper/TableManager.cxx b/writerfilter/source/dmapper/TableManager.cxx index 707b8223f565..d9245678d5dc 100644 --- a/writerfilter/source/dmapper/TableManager.cxx +++ b/writerfilter/source/dmapper/TableManager.cxx @@ -17,10 +17,10 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ -#include <TableManager.hxx> -#include <DomainMapperTableHandler.hxx> -#include <DomainMapper_Impl.hxx> -#include <util.hxx> +#include "TableManager.hxx" +#include "DomainMapperTableHandler.hxx" +#include "DomainMapper_Impl.hxx" +#include "util.hxx" namespace writerfilter { diff --git a/writerfilter/source/dmapper/TableManager.hxx b/writerfilter/source/dmapper/TableManager.hxx index bdfc0e4bd9fd..299e3584981d 100644 --- a/writerfilter/source/dmapper/TableManager.hxx +++ b/writerfilter/source/dmapper/TableManager.hxx @@ -29,8 +29,8 @@ #include "TagLogger.hxx" #include <rtl/strbuf.hxx> -#include <PropertyMap.hxx> -#include <TableData.hxx> +#include "PropertyMap.hxx" +#include "TableData.hxx" namespace writerfilter { diff --git a/writerfilter/source/dmapper/TablePositionHandler.cxx b/writerfilter/source/dmapper/TablePositionHandler.cxx index 0654c12c5f18..4b9a0091c7a0 100644 --- a/writerfilter/source/dmapper/TablePositionHandler.cxx +++ b/writerfilter/source/dmapper/TablePositionHandler.cxx @@ -6,8 +6,8 @@ * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ -#include <TablePositionHandler.hxx> -#include <ConversionHelper.hxx> +#include "TablePositionHandler.hxx" +#include "ConversionHelper.hxx" #include <ooxml/resourceids.hxx> #include <com/sun/star/text/HoriOrientation.hpp> #include <com/sun/star/text/VertOrientation.hpp> diff --git a/writerfilter/source/dmapper/TablePropertiesHandler.cxx b/writerfilter/source/dmapper/TablePropertiesHandler.cxx index 295139583334..a26f7596cd7f 100644 --- a/writerfilter/source/dmapper/TablePropertiesHandler.cxx +++ b/writerfilter/source/dmapper/TablePropertiesHandler.cxx @@ -32,7 +32,7 @@ #include <com/sun/star/text/SizeType.hpp> #include <com/sun/star/text/VertOrientation.hpp> #include <oox/token/tokens.hxx> -#include <DomainMapper.hxx> +#include "DomainMapper.hxx" using namespace com::sun::star; using namespace oox; diff --git a/writerfilter/source/dmapper/TablePropertiesHandler.hxx b/writerfilter/source/dmapper/TablePropertiesHandler.hxx index 7197c13e1ff7..b3858f170d72 100644 --- a/writerfilter/source/dmapper/TablePropertiesHandler.hxx +++ b/writerfilter/source/dmapper/TablePropertiesHandler.hxx @@ -22,7 +22,7 @@ #include "PropertyMap.hxx" -#include <TableManager.hxx> +#include "TableManager.hxx" #include <dmapper/resourcemodel.hxx> #include <memory> diff --git a/writerfilter/source/dmapper/TblStylePrHandler.cxx b/writerfilter/source/dmapper/TblStylePrHandler.cxx index 3393e9e345fd..d3739053efa6 100644 --- a/writerfilter/source/dmapper/TblStylePrHandler.cxx +++ b/writerfilter/source/dmapper/TblStylePrHandler.cxx @@ -17,8 +17,8 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ -#include <TblStylePrHandler.hxx> -#include <PropertyMap.hxx> +#include "TblStylePrHandler.hxx" +#include "PropertyMap.hxx" #include <ooxml/resourceids.hxx> #include <comphelper/sequence.hxx> diff --git a/writerfilter/source/dmapper/TblStylePrHandler.hxx b/writerfilter/source/dmapper/TblStylePrHandler.hxx index 920a56560809..6beb52ff1e27 100644 --- a/writerfilter/source/dmapper/TblStylePrHandler.hxx +++ b/writerfilter/source/dmapper/TblStylePrHandler.hxx @@ -22,7 +22,7 @@ #include "TablePropertiesHandler.hxx" -#include <DomainMapper.hxx> +#include "DomainMapper.hxx" #include "LoggedResources.hxx" #include <memory> #include <vector> diff --git a/writerfilter/source/dmapper/TextEffectsHandler.cxx b/writerfilter/source/dmapper/TextEffectsHandler.cxx index 244a15c8c648..13e621438c62 100644 --- a/writerfilter/source/dmapper/TextEffectsHandler.cxx +++ b/writerfilter/source/dmapper/TextEffectsHandler.cxx @@ -12,7 +12,7 @@ #include <map> -#include <TextEffectsHandler.hxx> +#include "TextEffectsHandler.hxx" #include <rtl/ustrbuf.hxx> #include <comphelper/string.hxx> diff --git a/writerfilter/source/dmapper/TextEffectsHandler.hxx b/writerfilter/source/dmapper/TextEffectsHandler.hxx index 6ec17f59aeea..d09504cbceb7 100644 --- a/writerfilter/source/dmapper/TextEffectsHandler.hxx +++ b/writerfilter/source/dmapper/TextEffectsHandler.hxx @@ -16,7 +16,7 @@ #include <com/sun/star/beans/PropertyValue.hpp> #include <com/sun/star/lang/XComponent.hpp> -#include <PropertyIds.hxx> +#include "PropertyIds.hxx" #include <oox/helper/grabbagstack.hxx> diff --git a/writerfilter/source/dmapper/ThemeTable.cxx b/writerfilter/source/dmapper/ThemeTable.cxx index 8c7c33538092..75860620810a 100644 --- a/writerfilter/source/dmapper/ThemeTable.cxx +++ b/writerfilter/source/dmapper/ThemeTable.cxx @@ -17,7 +17,7 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ -#include <ThemeTable.hxx> +#include "ThemeTable.hxx" #include <i18nlangtag/languagetag.hxx> #include <ooxml/resourceids.hxx> diff --git a/writerfilter/source/dmapper/TrackChangesHandler.cxx b/writerfilter/source/dmapper/TrackChangesHandler.cxx index 831a122322a1..18bf9ff15c11 100644 --- a/writerfilter/source/dmapper/TrackChangesHandler.cxx +++ b/writerfilter/source/dmapper/TrackChangesHandler.cxx @@ -6,9 +6,9 @@ * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ -#include <TrackChangesHandler.hxx> -#include <PropertyMap.hxx> -#include <ConversionHelper.hxx> +#include "TrackChangesHandler.hxx" +#include "PropertyMap.hxx" +#include "ConversionHelper.hxx" #include <ooxml/resourceids.hxx> #include <oox/token/tokens.hxx> #include <osl/diagnose.h> diff --git a/writerfilter/source/dmapper/TrackChangesHandler.hxx b/writerfilter/source/dmapper/TrackChangesHandler.hxx index 272e86de0c15..23c8b8e0f3b4 100644 --- a/writerfilter/source/dmapper/TrackChangesHandler.hxx +++ b/writerfilter/source/dmapper/TrackChangesHandler.hxx @@ -12,7 +12,7 @@ #include "LoggedResources.hxx" #include <memory> #include <com/sun/star/beans/PropertyValue.hpp> -#include <DomainMapper_Impl.hxx> +#include "DomainMapper_Impl.hxx" namespace writerfilter { namespace dmapper diff --git a/writerfilter/source/dmapper/domainmapperfactory.cxx b/writerfilter/source/dmapper/domainmapperfactory.cxx index c347c8b6b16b..1d3ee6039c61 100644 --- a/writerfilter/source/dmapper/domainmapperfactory.cxx +++ b/writerfilter/source/dmapper/domainmapperfactory.cxx @@ -7,7 +7,7 @@ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ -#include <DomainMapper.hxx> +#include "DomainMapper.hxx" #include <unotools/mediadescriptor.hxx> namespace writerfilter diff --git a/writerfilter/source/dmapper/util.cxx b/writerfilter/source/dmapper/util.cxx index fbbb069d7772..e721d6cecb9b 100644 --- a/writerfilter/source/dmapper/util.cxx +++ b/writerfilter/source/dmapper/util.cxx @@ -19,7 +19,7 @@ #include <stdlib.h> #include <fstream> #include <string> -#include <util.hxx> +#include "util.hxx" namespace writerfilter { diff --git a/writerfilter/source/ooxml/OOXMLDocumentImpl.cxx b/writerfilter/source/ooxml/OOXMLDocumentImpl.cxx index 63277cf72065..2a5f71b512c9 100644 --- a/writerfilter/source/ooxml/OOXMLDocumentImpl.cxx +++ b/writerfilter/source/ooxml/OOXMLDocumentImpl.cxx @@ -42,7 +42,7 @@ #include <unotools/mediadescriptor.hxx> #include <iostream> -#include "sfx2/objsh.hxx" +#include <sfx2/objsh.hxx> // this extern variable is declared in OOXMLStreamImpl.hxx OUString customTarget; diff --git a/writerfilter/source/ooxml/OOXMLStreamImpl.cxx b/writerfilter/source/ooxml/OOXMLStreamImpl.cxx index e8ae8c1dca20..f82de598a095 100644 --- a/writerfilter/source/ooxml/OOXMLStreamImpl.cxx +++ b/writerfilter/source/ooxml/OOXMLStreamImpl.cxx @@ -18,7 +18,7 @@ */ #include "OOXMLStreamImpl.hxx" -#include "oox/core/fasttokenhandler.hxx" +#include <oox/core/fasttokenhandler.hxx> #include <iostream> #include <com/sun/star/embed/XHierarchicalStorageAccess.hpp> diff --git a/writerfilter/source/rtftok/rtfcharsets.cxx b/writerfilter/source/rtftok/rtfcharsets.cxx index 583691ee91bb..91cd16d26b96 100644 --- a/writerfilter/source/rtftok/rtfcharsets.cxx +++ b/writerfilter/source/rtftok/rtfcharsets.cxx @@ -7,7 +7,7 @@ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ -#include <rtfcharsets.hxx> +#include "rtfcharsets.hxx" #include <sal/macros.h> namespace writerfilter diff --git a/writerfilter/source/rtftok/rtfcontrolwords.cxx b/writerfilter/source/rtftok/rtfcontrolwords.cxx index 18a6b3e42706..d5d39d4c400c 100644 --- a/writerfilter/source/rtftok/rtfcontrolwords.cxx +++ b/writerfilter/source/rtftok/rtfcontrolwords.cxx @@ -7,7 +7,7 @@ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ -#include <rtflistener.hxx> +#include "rtflistener.hxx" #include <oox/token/namespaces.hxx> #include <oox/token/tokens.hxx> #include <cstring> diff --git a/writerfilter/source/rtftok/rtfdispatchdestination.cxx b/writerfilter/source/rtftok/rtfdispatchdestination.cxx index 16abeed361ef..2aa635e13488 100644 --- a/writerfilter/source/rtftok/rtfdispatchdestination.cxx +++ b/writerfilter/source/rtftok/rtfdispatchdestination.cxx @@ -7,7 +7,7 @@ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ -#include <rtfdocumentimpl.hxx> +#include "rtfdocumentimpl.hxx" #include <com/sun/star/document/DocumentProperties.hpp> #include <com/sun/star/drawing/XDrawPageSupplier.hpp> @@ -19,10 +19,10 @@ #include <dmapper/DomainMapperFactory.hxx> #include <ooxml/resourceids.hxx> -#include <rtflookahead.hxx> -#include <rtfreferenceproperties.hxx> -#include <rtfsdrimport.hxx> -#include <rtfskipdestination.hxx> +#include "rtflookahead.hxx" +#include "rtfreferenceproperties.hxx" +#include "rtfsdrimport.hxx" +#include "rtfskipdestination.hxx" using namespace com::sun::star; diff --git a/writerfilter/source/rtftok/rtfdispatchflag.cxx b/writerfilter/source/rtftok/rtfdispatchflag.cxx index 5f512b94df77..5d683fee0dcc 100644 --- a/writerfilter/source/rtftok/rtfdispatchflag.cxx +++ b/writerfilter/source/rtftok/rtfdispatchflag.cxx @@ -7,7 +7,7 @@ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ -#include <rtfdocumentimpl.hxx> +#include "rtfdocumentimpl.hxx" #include <com/sun/star/drawing/XDrawPageSupplier.hpp> #include <com/sun/star/drawing/XEnhancedCustomShapeDefaulter.hpp> @@ -17,8 +17,8 @@ #include <ooxml/resourceids.hxx> -#include <rtfsdrimport.hxx> -#include <rtfskipdestination.hxx> +#include "rtfsdrimport.hxx" +#include "rtfskipdestination.hxx" using namespace com::sun::star; diff --git a/writerfilter/source/rtftok/rtfdispatchsymbol.cxx b/writerfilter/source/rtftok/rtfdispatchsymbol.cxx index a7546f4a923b..a6758e623f7d 100644 --- a/writerfilter/source/rtftok/rtfdispatchsymbol.cxx +++ b/writerfilter/source/rtftok/rtfdispatchsymbol.cxx @@ -7,15 +7,15 @@ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ -#include <rtfdocumentimpl.hxx> +#include "rtfdocumentimpl.hxx" #include <com/sun/star/io/WrongFormatException.hpp> #include <svl/lngmisc.hxx> #include <ooxml/resourceids.hxx> -#include <rtfreferenceproperties.hxx> -#include <rtfskipdestination.hxx> +#include "rtfreferenceproperties.hxx" +#include "rtfskipdestination.hxx" using namespace com::sun::star; diff --git a/writerfilter/source/rtftok/rtfdispatchvalue.cxx b/writerfilter/source/rtftok/rtfdispatchvalue.cxx index bb803365a2f5..030b693fd225 100644 --- a/writerfilter/source/rtftok/rtfdispatchvalue.cxx +++ b/writerfilter/source/rtftok/rtfdispatchvalue.cxx @@ -7,7 +7,7 @@ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ -#include <rtfdocumentimpl.hxx> +#include "rtfdocumentimpl.hxx" #include <com/sun/star/text/WrapTextMode.hpp> @@ -20,10 +20,10 @@ #include <ooxml/resourceids.hxx> -#include <rtfcharsets.hxx> -#include <rtffly.hxx> -#include <rtfreferenceproperties.hxx> -#include <rtfskipdestination.hxx> +#include "rtfcharsets.hxx" +#include "rtffly.hxx" +#include "rtfreferenceproperties.hxx" +#include "rtfskipdestination.hxx" #include "officecfg/Setup.hxx" #include "officecfg/Office/Linguistic.hxx" diff --git a/writerfilter/source/rtftok/rtfdocumentfactory.cxx b/writerfilter/source/rtftok/rtfdocumentfactory.cxx index aadfc38e71ce..08dbdcbafe0e 100644 --- a/writerfilter/source/rtftok/rtfdocumentfactory.cxx +++ b/writerfilter/source/rtftok/rtfdocumentfactory.cxx @@ -7,7 +7,7 @@ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ -#include <rtfdocumentimpl.hxx> +#include "rtfdocumentimpl.hxx" namespace writerfilter { diff --git a/writerfilter/source/rtftok/rtfdocumentimpl.cxx b/writerfilter/source/rtftok/rtfdocumentimpl.cxx index 398ca2e82c0d..8780abc8ce66 100644 --- a/writerfilter/source/rtftok/rtfdocumentimpl.cxx +++ b/writerfilter/source/rtftok/rtfdocumentimpl.cxx @@ -43,12 +43,12 @@ #include <oox/drawingml/drawingmltypes.hxx> #include <rtl/uri.hxx> #include <dmapper/DomainMapperFactory.hxx> -#include <rtfsdrimport.hxx> -#include <rtflookahead.hxx> -#include <rtfcharsets.hxx> -#include <rtfreferenceproperties.hxx> -#include <rtfskipdestination.hxx> -#include <rtffly.hxx> +#include "rtfsdrimport.hxx" +#include "rtflookahead.hxx" +#include "rtfcharsets.hxx" +#include "rtfreferenceproperties.hxx" +#include "rtfskipdestination.hxx" +#include "rtffly.hxx" using namespace com::sun::star; diff --git a/writerfilter/source/rtftok/rtfdocumentimpl.hxx b/writerfilter/source/rtftok/rtfdocumentimpl.hxx index 8756e5fd071c..b56227c29a25 100644 --- a/writerfilter/source/rtftok/rtfdocumentimpl.hxx +++ b/writerfilter/source/rtftok/rtfdocumentimpl.hxx @@ -24,10 +24,10 @@ #include <oox/mathml/importutils.hxx> #include <rtl/strbuf.hxx> -#include <rtftok/RTFDocument.hxx> -#include <rtfreferencetable.hxx> -#include <rtfsprm.hxx> -#include <rtflistener.hxx> +#include "rtftok/RTFDocument.hxx" +#include "rtfreferencetable.hxx" +#include "rtfsprm.hxx" +#include "rtflistener.hxx" class SvStream; diff --git a/writerfilter/source/rtftok/rtflistener.hxx b/writerfilter/source/rtftok/rtflistener.hxx index a8783a544974..e35c0cccf1cb 100644 --- a/writerfilter/source/rtftok/rtflistener.hxx +++ b/writerfilter/source/rtftok/rtflistener.hxx @@ -10,7 +10,7 @@ #ifndef INCLUDED_WRITERFILTER_SOURCE_RTFTOK_RTFLISTENER_HXX #define INCLUDED_WRITERFILTER_SOURCE_RTFTOK_RTFLISTENER_HXX -#include <rtfcontrolwords.hxx> +#include "rtfcontrolwords.hxx" namespace writerfilter { diff --git a/writerfilter/source/rtftok/rtflookahead.cxx b/writerfilter/source/rtftok/rtflookahead.cxx index 9f43301666e6..b01ed864eeec 100644 --- a/writerfilter/source/rtftok/rtflookahead.cxx +++ b/writerfilter/source/rtftok/rtflookahead.cxx @@ -7,7 +7,7 @@ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ -#include <rtflookahead.hxx> +#include "rtflookahead.hxx" #include <tools/stream.hxx> using namespace com::sun::star; diff --git a/writerfilter/source/rtftok/rtflookahead.hxx b/writerfilter/source/rtftok/rtflookahead.hxx index b1a6e85de858..32f3a29d8423 100644 --- a/writerfilter/source/rtftok/rtflookahead.hxx +++ b/writerfilter/source/rtftok/rtflookahead.hxx @@ -11,8 +11,8 @@ #define INCLUDED_WRITERFILTER_SOURCE_RTFTOK_RTFLOOKAHEAD_HXX #include <memory> -#include <rtflistener.hxx> -#include <rtftokenizer.hxx> +#include "rtflistener.hxx" +#include "rtftokenizer.hxx" class SvStream; diff --git a/writerfilter/source/rtftok/rtfreferenceproperties.cxx b/writerfilter/source/rtftok/rtfreferenceproperties.cxx index 3a00fd32aebe..deb72586dbda 100644 --- a/writerfilter/source/rtftok/rtfreferenceproperties.cxx +++ b/writerfilter/source/rtftok/rtfreferenceproperties.cxx @@ -7,7 +7,7 @@ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ -#include <rtfreferenceproperties.hxx> +#include "rtfreferenceproperties.hxx" namespace writerfilter { diff --git a/writerfilter/source/rtftok/rtfreferenceproperties.hxx b/writerfilter/source/rtftok/rtfreferenceproperties.hxx index 492726c58607..75cd4febad11 100644 --- a/writerfilter/source/rtftok/rtfreferenceproperties.hxx +++ b/writerfilter/source/rtftok/rtfreferenceproperties.hxx @@ -10,7 +10,7 @@ #ifndef INCLUDED_WRITERFILTER_SOURCE_RTFTOK_RTFREFERENCEPROPERTIES_HXX #define INCLUDED_WRITERFILTER_SOURCE_RTFTOK_RTFREFERENCEPROPERTIES_HXX -#include <rtfsprm.hxx> +#include "rtfsprm.hxx" namespace writerfilter { diff --git a/writerfilter/source/rtftok/rtfreferencetable.cxx b/writerfilter/source/rtftok/rtfreferencetable.cxx index a32ceb12d7d8..8013e44e2c72 100644 --- a/writerfilter/source/rtftok/rtfreferencetable.cxx +++ b/writerfilter/source/rtftok/rtfreferencetable.cxx @@ -7,7 +7,7 @@ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ -#include <rtfreferencetable.hxx> +#include "rtfreferencetable.hxx" namespace writerfilter { diff --git a/writerfilter/source/rtftok/rtfsdrimport.cxx b/writerfilter/source/rtftok/rtfsdrimport.cxx index d6e9ecdb5559..73bc640e8b00 100644 --- a/writerfilter/source/rtftok/rtfsdrimport.cxx +++ b/writerfilter/source/rtftok/rtfsdrimport.cxx @@ -7,7 +7,7 @@ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ -#include <rtfsdrimport.hxx> +#include "rtfsdrimport.hxx" #include <cmath> #include <com/sun/star/container/XNamed.hpp> #include <com/sun/star/drawing/FillStyle.hpp> @@ -35,7 +35,7 @@ #include <comphelper/sequence.hxx> #include <comphelper/propertyvalue.hxx> #include <comphelper/propertysequence.hxx> -#include <rtfreferenceproperties.hxx> +#include "rtfreferenceproperties.hxx" #include <oox/vml/vmlformatting.hxx> #include <oox/helper/modelobjecthelper.hxx> #include <oox/drawingml/shapepropertymap.hxx> diff --git a/writerfilter/source/rtftok/rtfsdrimport.hxx b/writerfilter/source/rtftok/rtfsdrimport.hxx index c854a961993d..948a4a6837da 100644 --- a/writerfilter/source/rtftok/rtfsdrimport.hxx +++ b/writerfilter/source/rtftok/rtfsdrimport.hxx @@ -15,7 +15,7 @@ #include <com/sun/star/drawing/XShapes.hpp> #include <dmapper/GraphicZOrderHelper.hxx> -#include <rtfdocumentimpl.hxx> +#include "rtfdocumentimpl.hxx" namespace writerfilter { diff --git a/writerfilter/source/rtftok/rtfskipdestination.cxx b/writerfilter/source/rtftok/rtfskipdestination.cxx index 051bf4df4b4c..490d44fba25e 100644 --- a/writerfilter/source/rtftok/rtfskipdestination.cxx +++ b/writerfilter/source/rtftok/rtfskipdestination.cxx @@ -7,7 +7,7 @@ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ -#include <rtfskipdestination.hxx> +#include "rtfskipdestination.hxx" #include <osl/diagnose.h> #include <sal/log.hxx> diff --git a/writerfilter/source/rtftok/rtfskipdestination.hxx b/writerfilter/source/rtftok/rtfskipdestination.hxx index d153459dfcbf..7e59a3380f94 100644 --- a/writerfilter/source/rtftok/rtfskipdestination.hxx +++ b/writerfilter/source/rtftok/rtfskipdestination.hxx @@ -10,7 +10,7 @@ #ifndef INCLUDED_WRITERFILTER_SOURCE_RTFTOK_RTFSKIPDESTINATION_HXX #define INCLUDED_WRITERFILTER_SOURCE_RTFTOK_RTFSKIPDESTINATION_HXX -#include <rtflistener.hxx> +#include "rtflistener.hxx" namespace writerfilter { diff --git a/writerfilter/source/rtftok/rtfsprm.cxx b/writerfilter/source/rtftok/rtfsprm.cxx index d3faf3a145fd..99218bcd9f20 100644 --- a/writerfilter/source/rtftok/rtfsprm.cxx +++ b/writerfilter/source/rtftok/rtfsprm.cxx @@ -7,7 +7,7 @@ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ -#include <rtfsprm.hxx> +#include "rtfsprm.hxx" #include <ooxml/resourceids.hxx> #include <ooxml/QNameToString.hxx> #include <rtl/strbuf.hxx> diff --git a/writerfilter/source/rtftok/rtfsprm.hxx b/writerfilter/source/rtftok/rtfsprm.hxx index f7a8f4a0c923..0b2b88e6d15f 100644 --- a/writerfilter/source/rtftok/rtfsprm.hxx +++ b/writerfilter/source/rtftok/rtfsprm.hxx @@ -15,7 +15,7 @@ #include <vector> #include <boost/intrusive_ptr.hpp> -#include <rtfvalue.hxx> +#include "rtfvalue.hxx" namespace writerfilter { diff --git a/writerfilter/source/rtftok/rtftokenizer.cxx b/writerfilter/source/rtftok/rtftokenizer.cxx index 3bd21353ef46..85ef23c609cf 100644 --- a/writerfilter/source/rtftok/rtftokenizer.cxx +++ b/writerfilter/source/rtftok/rtftokenizer.cxx @@ -7,14 +7,14 @@ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ -#include <rtftokenizer.hxx> +#include "rtftokenizer.hxx" #include <unotools/resmgr.hxx> #include <vcl/settings.hxx> #include <vcl/svapp.hxx> #include <svx/dialmgr.hxx> #include <svx/strings.hrc> #include <rtl/strbuf.hxx> -#include <rtfskipdestination.hxx> +#include "rtfskipdestination.hxx" #include <rtl/character.hxx> #include <com/sun/star/io/BufferSizeExceededException.hpp> diff --git a/writerfilter/source/rtftok/rtftokenizer.hxx b/writerfilter/source/rtftok/rtftokenizer.hxx index 19c26d8d196b..c2a32e3e874e 100644 --- a/writerfilter/source/rtftok/rtftokenizer.hxx +++ b/writerfilter/source/rtftok/rtftokenizer.hxx @@ -10,7 +10,7 @@ #ifndef INCLUDED_WRITERFILTER_SOURCE_RTFTOK_RTFTOKENIZER_HXX #define INCLUDED_WRITERFILTER_SOURCE_RTFTOK_RTFTOKENIZER_HXX -#include <rtflistener.hxx> +#include "rtflistener.hxx" #include <vector> diff --git a/writerfilter/source/rtftok/rtfvalue.cxx b/writerfilter/source/rtftok/rtfvalue.cxx index 555c51d30a16..e2430128db2c 100644 --- a/writerfilter/source/rtftok/rtfvalue.cxx +++ b/writerfilter/source/rtftok/rtfvalue.cxx @@ -7,8 +7,8 @@ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ -#include <rtfreferenceproperties.hxx> -#include <rtfdocumentimpl.hxx> +#include "rtfreferenceproperties.hxx" +#include "rtfdocumentimpl.hxx" using namespace com::sun::star; _______________________________________________ Libreoffice-commits mailing list libreoffice-comm...@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits