Kaydet (Commit) 8f7a1111 authored tarafından Thomas Arnhold's avatar Thomas Arnhold

update_pch

Change-Id: I099bff66a7796a5cf18e37e445467bdfb33de602
üst 371e9da4
...@@ -110,6 +110,7 @@ ...@@ -110,6 +110,7 @@
#include <com/sun/star/drawing/LineJoint.hpp> #include <com/sun/star/drawing/LineJoint.hpp>
#include <com/sun/star/drawing/LineStyle.hpp> #include <com/sun/star/drawing/LineStyle.hpp>
#include <com/sun/star/drawing/ProjectionMode.hpp> #include <com/sun/star/drawing/ProjectionMode.hpp>
#include <com/sun/star/drawing/ShapeCollection.hpp>
#include <com/sun/star/drawing/TextHorizontalAdjust.hpp> #include <com/sun/star/drawing/TextHorizontalAdjust.hpp>
#include <com/sun/star/drawing/TextVerticalAdjust.hpp> #include <com/sun/star/drawing/TextVerticalAdjust.hpp>
#include <com/sun/star/drawing/XDrawPagesSupplier.hpp> #include <com/sun/star/drawing/XDrawPagesSupplier.hpp>
...@@ -312,8 +313,10 @@ ...@@ -312,8 +313,10 @@
#include <vcl/graph.hxx> #include <vcl/graph.hxx>
#include <vcl/help.hxx> #include <vcl/help.hxx>
#include <vcl/image.hxx> #include <vcl/image.hxx>
#include <vcl/layout.hxx>
#include <vcl/msgbox.hxx> #include <vcl/msgbox.hxx>
#include <vcl/outdev.hxx> #include <vcl/outdev.hxx>
#include <vcl/settings.hxx>
#include <vcl/svapp.hxx> #include <vcl/svapp.hxx>
#include <vcl/taskpanelist.hxx> #include <vcl/taskpanelist.hxx>
#include <vcl/toolbox.hxx> #include <vcl/toolbox.hxx>
......
...@@ -15,6 +15,7 @@ ...@@ -15,6 +15,7 @@
*/ */
#include "com/sun/star/uno/RuntimeException.hpp" #include "com/sun/star/uno/RuntimeException.hpp"
#include <GL/glew.h>
#include <algorithm> #include <algorithm>
#include <basegfx/matrix/b2dhommatrix.hxx> #include <basegfx/matrix/b2dhommatrix.hxx>
#include <basegfx/matrix/b3dhommatrix.hxx> #include <basegfx/matrix/b3dhommatrix.hxx>
...@@ -30,6 +31,7 @@ ...@@ -30,6 +31,7 @@
#include <basegfx/vector/b2ivector.hxx> #include <basegfx/vector/b2ivector.hxx>
#include <boost/bind.hpp> #include <boost/bind.hpp>
#include <boost/ptr_container/ptr_map.hpp> #include <boost/ptr_container/ptr_map.hpp>
#include <boost/scoped_array.hpp>
#include <boost/scoped_ptr.hpp> #include <boost/scoped_ptr.hpp>
#include <boost/shared_ptr.hpp> #include <boost/shared_ptr.hpp>
#include <cmath> #include <cmath>
...@@ -45,6 +47,8 @@ ...@@ -45,6 +47,8 @@
#include <com/sun/star/awt/PosSize.hpp> #include <com/sun/star/awt/PosSize.hpp>
#include <com/sun/star/awt/Size.hpp> #include <com/sun/star/awt/Size.hpp>
#include <com/sun/star/awt/XWindow.hpp> #include <com/sun/star/awt/XWindow.hpp>
#include <com/sun/star/beans/NamedValue.hpp>
#include <com/sun/star/beans/Property.hpp>
#include <com/sun/star/beans/PropertyAttribute.hpp> #include <com/sun/star/beans/PropertyAttribute.hpp>
#include <com/sun/star/beans/XFastPropertySet.hpp> #include <com/sun/star/beans/XFastPropertySet.hpp>
#include <com/sun/star/beans/XMultiPropertySet.hpp> #include <com/sun/star/beans/XMultiPropertySet.hpp>
...@@ -78,9 +82,11 @@ ...@@ -78,9 +82,11 @@
#include <com/sun/star/chart2/XAnyDescriptionAccess.hpp> #include <com/sun/star/chart2/XAnyDescriptionAccess.hpp>
#include <com/sun/star/chart2/XAxis.hpp> #include <com/sun/star/chart2/XAxis.hpp>
#include <com/sun/star/chart2/XChartDocument.hpp> #include <com/sun/star/chart2/XChartDocument.hpp>
#include <com/sun/star/chart2/XChartType.hpp>
#include <com/sun/star/chart2/XChartTypeContainer.hpp> #include <com/sun/star/chart2/XChartTypeContainer.hpp>
#include <com/sun/star/chart2/XChartTypeTemplate.hpp> #include <com/sun/star/chart2/XChartTypeTemplate.hpp>
#include <com/sun/star/chart2/XColorScheme.hpp> #include <com/sun/star/chart2/XColorScheme.hpp>
#include <com/sun/star/chart2/XCoordinateSystem.hpp>
#include <com/sun/star/chart2/XCoordinateSystemContainer.hpp> #include <com/sun/star/chart2/XCoordinateSystemContainer.hpp>
#include <com/sun/star/chart2/XDataSeries.hpp> #include <com/sun/star/chart2/XDataSeries.hpp>
#include <com/sun/star/chart2/XDataSeriesContainer.hpp> #include <com/sun/star/chart2/XDataSeriesContainer.hpp>
...@@ -88,6 +94,7 @@ ...@@ -88,6 +94,7 @@
#include <com/sun/star/chart2/XFormattedString.hpp> #include <com/sun/star/chart2/XFormattedString.hpp>
#include <com/sun/star/chart2/XLegend.hpp> #include <com/sun/star/chart2/XLegend.hpp>
#include <com/sun/star/chart2/XRegressionCurveContainer.hpp> #include <com/sun/star/chart2/XRegressionCurveContainer.hpp>
#include <com/sun/star/chart2/XTimeBased.hpp>
#include <com/sun/star/chart2/XTitle.hpp> #include <com/sun/star/chart2/XTitle.hpp>
#include <com/sun/star/chart2/XTitled.hpp> #include <com/sun/star/chart2/XTitled.hpp>
#include <com/sun/star/chart2/data/LabelOrigin.hpp> #include <com/sun/star/chart2/data/LabelOrigin.hpp>
...@@ -189,7 +196,7 @@ ...@@ -189,7 +196,7 @@
#include <com/sun/star/uno/Sequence.hxx> #include <com/sun/star/uno/Sequence.hxx>
#include <com/sun/star/uno/XComponentContext.hpp> #include <com/sun/star/uno/XComponentContext.hpp>
#include <com/sun/star/util/Color.hpp> #include <com/sun/star/util/Color.hpp>
#include <com/sun/star/util/DateTime.hpp> #include <com/sun/star/util/Date.hpp>
#include <com/sun/star/util/NumberFormat.hpp> #include <com/sun/star/util/NumberFormat.hpp>
#include <com/sun/star/util/NumberFormatter.hpp> #include <com/sun/star/util/NumberFormatter.hpp>
#include <com/sun/star/util/XCloneable.hpp> #include <com/sun/star/util/XCloneable.hpp>
...@@ -220,6 +227,7 @@ ...@@ -220,6 +227,7 @@
#include <cppuhelper/implementationentry.hxx> #include <cppuhelper/implementationentry.hxx>
#include <cppuhelper/interfacecontainer.hxx> #include <cppuhelper/interfacecontainer.hxx>
#include <cppuhelper/queryinterface.hxx> #include <cppuhelper/queryinterface.hxx>
#include <cppuhelper/supportsservice.hxx>
#include <cstdarg> #include <cstdarg>
#include <drawinglayer/XShapeDumper.hxx> #include <drawinglayer/XShapeDumper.hxx>
#include <editeng/brushitem.hxx> #include <editeng/brushitem.hxx>
...@@ -229,16 +237,20 @@ ...@@ -229,16 +237,20 @@
#include <editeng/unoprnms.hxx> #include <editeng/unoprnms.hxx>
#include <framework/undomanagerhelper.hxx> #include <framework/undomanagerhelper.hxx>
#include <functional> #include <functional>
#include <glm/glm.hpp>
#include <glm/gtx/transform.hpp>
#include <i18nlangtag/languagetag.hxx> #include <i18nlangtag/languagetag.hxx>
#include <i18nlangtag/mslangid.hxx> #include <i18nlangtag/mslangid.hxx>
#include <iterator> #include <iterator>
#include <limits> #include <limits>
#include <map> #include <map>
#include <memory>
#include <o3tl/compat_functional.hxx> #include <o3tl/compat_functional.hxx>
#include <officecfg/Office/Common.hxx> #include <officecfg/Office/Common.hxx>
#include <osl/conditn.hxx>
#include <osl/diagnose.h> #include <osl/diagnose.h>
#include <osl/module.hxx>
#include <osl/mutex.hxx> #include <osl/mutex.hxx>
#include <osl/time.h>
#include <rtl/instance.hxx> #include <rtl/instance.hxx>
#include <rtl/math.hxx> #include <rtl/math.hxx>
#include <rtl/strbuf.hxx> #include <rtl/strbuf.hxx>
...@@ -282,6 +294,7 @@ ...@@ -282,6 +294,7 @@
#include <tools/color.hxx> #include <tools/color.hxx>
#include <tools/debug.hxx> #include <tools/debug.hxx>
#include <tools/resmgr.hxx> #include <tools/resmgr.hxx>
#include <tools/solar.h>
#include <ucbhelper/content.hxx> #include <ucbhelper/content.hxx>
#include <unotools/charclass.hxx> #include <unotools/charclass.hxx>
#include <unotools/configitem.hxx> #include <unotools/configitem.hxx>
...@@ -294,6 +307,7 @@ ...@@ -294,6 +307,7 @@
#include <valarray> #include <valarray>
#include <vcl/cvtgrf.hxx> #include <vcl/cvtgrf.hxx>
#include <vcl/outdev.hxx> #include <vcl/outdev.hxx>
#include <vcl/settings.hxx>
#include <vcl/svapp.hxx> #include <vcl/svapp.hxx>
#include <vcl/virdev.hxx> #include <vcl/virdev.hxx>
#include <vector> #include <vector>
......
...@@ -59,8 +59,10 @@ ...@@ -59,8 +59,10 @@
#include <basic/sbstar.hxx> #include <basic/sbstar.hxx>
#include <basic/sbx.hxx> #include <basic/sbx.hxx>
#include <basic/sbxmeth.hxx> #include <basic/sbxmeth.hxx>
#include <bitset>
#include <boost/make_shared.hpp> #include <boost/make_shared.hpp>
#include <boost/ref.hpp> #include <boost/ref.hpp>
#include <boost/scoped_array.hpp>
#include <boost/scoped_ptr.hpp> #include <boost/scoped_ptr.hpp>
#include <boost/shared_ptr.hpp> #include <boost/shared_ptr.hpp>
#include <cassert> #include <cassert>
...@@ -87,6 +89,7 @@ ...@@ -87,6 +89,7 @@
#include <com/sun/star/container/XContentEnumerationAccess.hpp> #include <com/sun/star/container/XContentEnumerationAccess.hpp>
#include <com/sun/star/container/XEnumeration.hpp> #include <com/sun/star/container/XEnumeration.hpp>
#include <com/sun/star/container/XEnumerationAccess.hpp> #include <com/sun/star/container/XEnumerationAccess.hpp>
#include <com/sun/star/container/XHierarchicalName.hpp>
#include <com/sun/star/container/XHierarchicalNameAccess.hpp> #include <com/sun/star/container/XHierarchicalNameAccess.hpp>
#include <com/sun/star/container/XIndexAccess.hpp> #include <com/sun/star/container/XIndexAccess.hpp>
#include <com/sun/star/container/XNameAccess.hpp> #include <com/sun/star/container/XNameAccess.hpp>
...@@ -111,9 +114,7 @@ ...@@ -111,9 +114,7 @@
#include <com/sun/star/frame/Desktop.hpp> #include <com/sun/star/frame/Desktop.hpp>
#include <com/sun/star/frame/DispatchInformation.hpp> #include <com/sun/star/frame/DispatchInformation.hpp>
#include <com/sun/star/frame/FrameSearchFlag.hpp> #include <com/sun/star/frame/FrameSearchFlag.hpp>
#include <com/sun/star/frame/GlobalEventBroadcaster.hpp>
#include <com/sun/star/frame/ModuleManager.hpp> #include <com/sun/star/frame/ModuleManager.hpp>
#include <com/sun/star/frame/theUICommandDescription.hpp>
#include <com/sun/star/frame/XComponentLoader.hpp> #include <com/sun/star/frame/XComponentLoader.hpp>
#include <com/sun/star/frame/XController.hpp> #include <com/sun/star/frame/XController.hpp>
#include <com/sun/star/frame/XDesktop.hpp> #include <com/sun/star/frame/XDesktop.hpp>
...@@ -126,6 +127,8 @@ ...@@ -126,6 +127,8 @@
#include <com/sun/star/frame/XModel.hpp> #include <com/sun/star/frame/XModel.hpp>
#include <com/sun/star/frame/XModuleManager.hpp> #include <com/sun/star/frame/XModuleManager.hpp>
#include <com/sun/star/frame/XStorable.hpp> #include <com/sun/star/frame/XStorable.hpp>
#include <com/sun/star/frame/theGlobalEventBroadcaster.hpp>
#include <com/sun/star/frame/theUICommandDescription.hpp>
#include <com/sun/star/geometry/RealRectangle2D.hpp> #include <com/sun/star/geometry/RealRectangle2D.hpp>
#include <com/sun/star/graphic/GraphicProvider.hpp> #include <com/sun/star/graphic/GraphicProvider.hpp>
#include <com/sun/star/i18n/CollatorOptions.hpp> #include <com/sun/star/i18n/CollatorOptions.hpp>
...@@ -202,7 +205,6 @@ ...@@ -202,7 +205,6 @@
#include <com/sun/star/text/XNumberingTypeInfo.hpp> #include <com/sun/star/text/XNumberingTypeInfo.hpp>
#include <com/sun/star/ucb/CommandAbortedException.hpp> #include <com/sun/star/ucb/CommandAbortedException.hpp>
#include <com/sun/star/ucb/SimpleFileAccess.hpp> #include <com/sun/star/ucb/SimpleFileAccess.hpp>
#include <com/sun/star/ucb/UniversalContentBroker.hpp>
#include <com/sun/star/ucb/XContentAccess.hpp> #include <com/sun/star/ucb/XContentAccess.hpp>
#include <com/sun/star/ucb/XContentProvider.hpp> #include <com/sun/star/ucb/XContentProvider.hpp>
#include <com/sun/star/ui/GlobalAcceleratorConfiguration.hpp> #include <com/sun/star/ui/GlobalAcceleratorConfiguration.hpp>
...@@ -210,11 +212,8 @@ ...@@ -210,11 +212,8 @@
#include <com/sun/star/ui/ImageType.hpp> #include <com/sun/star/ui/ImageType.hpp>
#include <com/sun/star/ui/ItemStyle.hpp> #include <com/sun/star/ui/ItemStyle.hpp>
#include <com/sun/star/ui/ItemType.hpp> #include <com/sun/star/ui/ItemType.hpp>
#include <com/sun/star/ui/theModuleUIConfigurationManagerSupplier.hpp>
#include <com/sun/star/ui/theUICategoryDescription.hpp>
#include <com/sun/star/ui/UIConfigurationManager.hpp> #include <com/sun/star/ui/UIConfigurationManager.hpp>
#include <com/sun/star/ui/UIElementType.hpp> #include <com/sun/star/ui/UIElementType.hpp>
#include <com/sun/star/ui/theWindowStateConfiguration.hpp>
#include <com/sun/star/ui/XModuleUIConfigurationManager.hpp> #include <com/sun/star/ui/XModuleUIConfigurationManager.hpp>
#include <com/sun/star/ui/XUIConfiguration.hpp> #include <com/sun/star/ui/XUIConfiguration.hpp>
#include <com/sun/star/ui/XUIConfigurationListener.hpp> #include <com/sun/star/ui/XUIConfigurationListener.hpp>
...@@ -233,6 +232,9 @@ ...@@ -233,6 +232,9 @@
#include <com/sun/star/ui/dialogs/XFilePicker.hpp> #include <com/sun/star/ui/dialogs/XFilePicker.hpp>
#include <com/sun/star/ui/dialogs/XFilePickerControlAccess.hpp> #include <com/sun/star/ui/dialogs/XFilePickerControlAccess.hpp>
#include <com/sun/star/ui/dialogs/XFilterManager.hpp> #include <com/sun/star/ui/dialogs/XFilterManager.hpp>
#include <com/sun/star/ui/theModuleUIConfigurationManagerSupplier.hpp>
#include <com/sun/star/ui/theUICategoryDescription.hpp>
#include <com/sun/star/ui/theWindowStateConfiguration.hpp>
#include <com/sun/star/uno/Any.h> #include <com/sun/star/uno/Any.h>
#include <com/sun/star/uno/Any.hxx> #include <com/sun/star/uno/Any.hxx>
#include <com/sun/star/uno/Exception.hpp> #include <com/sun/star/uno/Exception.hpp>
...@@ -242,12 +244,12 @@ ...@@ -242,12 +244,12 @@
#include <com/sun/star/uno/Sequence.h> #include <com/sun/star/uno/Sequence.h>
#include <com/sun/star/uno/Sequence.hxx> #include <com/sun/star/uno/Sequence.hxx>
#include <com/sun/star/uno/XComponentContext.hpp> #include <com/sun/star/uno/XComponentContext.hpp>
#include <com/sun/star/util/thePathSettings.hpp>
#include <com/sun/star/util/URLTransformer.hpp> #include <com/sun/star/util/URLTransformer.hpp>
#include <com/sun/star/util/XChangesBatch.hpp> #include <com/sun/star/util/XChangesBatch.hpp>
#include <com/sun/star/util/XFlushable.hpp> #include <com/sun/star/util/XFlushable.hpp>
#include <com/sun/star/util/XURLTransformer.hpp> #include <com/sun/star/util/XURLTransformer.hpp>
#include <com/sun/star/util/theMacroExpander.hpp> #include <com/sun/star/util/theMacroExpander.hpp>
#include <com/sun/star/util/thePathSettings.hpp>
#include <comphelper/anytostring.hxx> #include <comphelper/anytostring.hxx>
#include <comphelper/broadcasthelper.hxx> #include <comphelper/broadcasthelper.hxx>
#include <comphelper/classids.hxx> #include <comphelper/classids.hxx>
...@@ -263,7 +265,6 @@ ...@@ -263,7 +265,6 @@
#include <comphelper/sequence.hxx> #include <comphelper/sequence.hxx>
#include <comphelper/sequenceashashmap.hxx> #include <comphelper/sequenceashashmap.hxx>
#include <comphelper/sequenceasvector.hxx> #include <comphelper/sequenceasvector.hxx>
#include <comphelper/stl_types.hxx>
#include <comphelper/string.hxx> #include <comphelper/string.hxx>
#include <comphelper/types.hxx> #include <comphelper/types.hxx>
#include <comphelper/uno3.hxx> #include <comphelper/uno3.hxx>
...@@ -275,6 +276,7 @@ ...@@ -275,6 +276,7 @@
#include <cppuhelper/exc_hlp.hxx> #include <cppuhelper/exc_hlp.hxx>
#include <cppuhelper/implbase1.hxx> #include <cppuhelper/implbase1.hxx>
#include <cppuhelper/implementationentry.hxx> #include <cppuhelper/implementationentry.hxx>
#include <cppuhelper/supportsservice.hxx>
#include <cstddef> #include <cstddef>
#include <editeng/acorrcfg.hxx> #include <editeng/acorrcfg.hxx>
#include <editeng/adjustitem.hxx> #include <editeng/adjustitem.hxx>
...@@ -334,6 +336,8 @@ ...@@ -334,6 +336,8 @@
#include <i18nlangtag/lang.h> #include <i18nlangtag/lang.h>
#include <i18nlangtag/languagetag.hxx> #include <i18nlangtag/languagetag.hxx>
#include <i18nlangtag/mslangid.hxx> #include <i18nlangtag/mslangid.hxx>
#include <i18nutil/unicode.hxx>
#include <iostream>
#include <limits> #include <limits>
#include <linguistic/lngprops.hxx> #include <linguistic/lngprops.hxx>
#include <linguistic/misc.hxx> #include <linguistic/misc.hxx>
...@@ -415,6 +419,8 @@ ...@@ -415,6 +419,8 @@
#include <svl/eitem.hxx> #include <svl/eitem.hxx>
#include <svl/filenotation.hxx> #include <svl/filenotation.hxx>
#include <svl/flagitem.hxx> #include <svl/flagitem.hxx>
#include <svl/ilstitem.hxx>
#include <svl/int64item.hxx>
#include <svl/intitem.hxx> #include <svl/intitem.hxx>
#include <svl/itemiter.hxx> #include <svl/itemiter.hxx>
#include <svl/itempool.hxx> #include <svl/itempool.hxx>
...@@ -539,9 +545,7 @@ ...@@ -539,9 +545,7 @@
#include <svx/ucsubset.hxx> #include <svx/ucsubset.hxx>
#include <svx/viewlayoutitem.hxx> #include <svx/viewlayoutitem.hxx>
#include <svx/xfillit.hxx> #include <svx/xfillit.hxx>
#include <svx/xfillit0.hxx>
#include <svx/xflbckit.hxx> #include <svx/xflbckit.hxx>
#include <svx/xflgrit.hxx>
#include <svx/xfltrit.hxx> #include <svx/xfltrit.hxx>
#include <svx/xlineit.hxx> #include <svx/xlineit.hxx>
#include <svx/xlineit0.hxx> #include <svx/xlineit0.hxx>
...@@ -555,6 +559,7 @@ ...@@ -555,6 +559,7 @@
#include <tools/date.hxx> #include <tools/date.hxx>
#include <tools/debug.hxx> #include <tools/debug.hxx>
#include <tools/diagnose_ex.h> #include <tools/diagnose_ex.h>
#include <tools/mapunit.hxx>
#include <tools/rc.h> #include <tools/rc.h>
#include <tools/rcid.h> #include <tools/rcid.h>
#include <tools/resary.hxx> #include <tools/resary.hxx>
...@@ -595,6 +600,7 @@ ...@@ -595,6 +600,7 @@
#include <unotools/ucbstreamhelper.hxx> #include <unotools/ucbstreamhelper.hxx>
#include <unotools/useroptions.hxx> #include <unotools/useroptions.hxx>
#include <unotools/viewoptions.hxx> #include <unotools/viewoptions.hxx>
#include <vcl/IconThemeInfo.hxx>
#include <vcl/bitmap.hxx> #include <vcl/bitmap.hxx>
#include <vcl/bmpacc.hxx> #include <vcl/bmpacc.hxx>
#include <vcl/builder.hxx> #include <vcl/builder.hxx>
......
...@@ -32,6 +32,7 @@ ...@@ -32,6 +32,7 @@
#include <boost/mem_fn.hpp> #include <boost/mem_fn.hpp>
#include <boost/noncopyable.hpp> #include <boost/noncopyable.hpp>
#include <boost/optional.hpp> #include <boost/optional.hpp>
#include <boost/scoped_array.hpp>
#include <boost/scoped_ptr.hpp> #include <boost/scoped_ptr.hpp>
#include <boost/shared_ptr.hpp> #include <boost/shared_ptr.hpp>
#include <boost/unordered_map.hpp> #include <boost/unordered_map.hpp>
...@@ -112,7 +113,6 @@ ...@@ -112,7 +113,6 @@
#include <com/sun/star/frame/Frame.hpp> #include <com/sun/star/frame/Frame.hpp>
#include <com/sun/star/frame/FrameSearchFlag.hpp> #include <com/sun/star/frame/FrameSearchFlag.hpp>
#include <com/sun/star/frame/TaskCreator.hpp> #include <com/sun/star/frame/TaskCreator.hpp>
#include <com/sun/star/frame/theUICommandDescription.hpp>
#include <com/sun/star/frame/XComponentLoader.hpp> #include <com/sun/star/frame/XComponentLoader.hpp>
#include <com/sun/star/frame/XController2.hpp> #include <com/sun/star/frame/XController2.hpp>
#include <com/sun/star/frame/XDispatchProvider.hpp> #include <com/sun/star/frame/XDispatchProvider.hpp>
...@@ -130,6 +130,7 @@ ...@@ -130,6 +130,7 @@
#include <com/sun/star/frame/XTitleChangeListener.hpp> #include <com/sun/star/frame/XTitleChangeListener.hpp>
#include <com/sun/star/frame/XUntitledNumbers.hpp> #include <com/sun/star/frame/XUntitledNumbers.hpp>
#include <com/sun/star/frame/status/Visibility.hpp> #include <com/sun/star/frame/status/Visibility.hpp>
#include <com/sun/star/frame/theUICommandDescription.hpp>
#include <com/sun/star/graphic/GraphicColorMode.hpp> #include <com/sun/star/graphic/GraphicColorMode.hpp>
#include <com/sun/star/graphic/XGraphic.hpp> #include <com/sun/star/graphic/XGraphic.hpp>
#include <com/sun/star/i18n/Collator.hpp> #include <com/sun/star/i18n/Collator.hpp>
...@@ -254,7 +255,6 @@ ...@@ -254,7 +255,6 @@
#include <com/sun/star/ucb/XInteractionSupplyAuthentication2.hpp> #include <com/sun/star/ucb/XInteractionSupplyAuthentication2.hpp>
#include <com/sun/star/ucb/XProgressHandler.hpp> #include <com/sun/star/ucb/XProgressHandler.hpp>
#include <com/sun/star/ui/ImageType.hpp> #include <com/sun/star/ui/ImageType.hpp>
#include <com/sun/star/ui/theModuleUIConfigurationManagerSupplier.hpp>
#include <com/sun/star/ui/XContextMenuInterceptor.hpp> #include <com/sun/star/ui/XContextMenuInterceptor.hpp>
#include <com/sun/star/ui/XImageManager.hpp> #include <com/sun/star/ui/XImageManager.hpp>
#include <com/sun/star/ui/XUIConfigurationManager.hpp> #include <com/sun/star/ui/XUIConfigurationManager.hpp>
...@@ -265,8 +265,10 @@ ...@@ -265,8 +265,10 @@
#include <com/sun/star/ui/dialogs/XExecutableDialog.hpp> #include <com/sun/star/ui/dialogs/XExecutableDialog.hpp>
#include <com/sun/star/ui/dialogs/XFilePicker.hpp> #include <com/sun/star/ui/dialogs/XFilePicker.hpp>
#include <com/sun/star/ui/dialogs/XFilePickerControlAccess.hpp> #include <com/sun/star/ui/dialogs/XFilePickerControlAccess.hpp>
#include <com/sun/star/ui/theModuleUIConfigurationManagerSupplier.hpp>
#include <com/sun/star/uno/Sequence.hxx> #include <com/sun/star/uno/Sequence.hxx>
#include <com/sun/star/uno/TypeClass.hpp> #include <com/sun/star/uno/TypeClass.hpp>
#include <com/sun/star/uno/XComponentContext.hpp>
#include <com/sun/star/uno/XNamingService.hpp> #include <com/sun/star/uno/XNamingService.hpp>
#include <com/sun/star/util/Date.hpp> #include <com/sun/star/util/Date.hpp>
#include <com/sun/star/util/DateTime.hpp> #include <com/sun/star/util/DateTime.hpp>
...@@ -288,7 +290,6 @@ ...@@ -288,7 +290,6 @@
#include <com/sun/star/util/XRefreshable.hpp> #include <com/sun/star/util/XRefreshable.hpp>
#include <com/sun/star/util/XURLTransformer.hpp> #include <com/sun/star/util/XURLTransformer.hpp>
#include <com/sun/star/view/XSelectionSupplier.hpp> #include <com/sun/star/view/XSelectionSupplier.hpp>
#include <comphelper/basicio.hxx>
#include <comphelper/classids.hxx> #include <comphelper/classids.hxx>
#include <comphelper/containermultiplexer.hxx> #include <comphelper/containermultiplexer.hxx>
#include <comphelper/enumhelper.hxx> #include <comphelper/enumhelper.hxx>
...@@ -355,6 +356,7 @@ ...@@ -355,6 +356,7 @@
#include <rtl/tencinfo.h> #include <rtl/tencinfo.h>
#include <rtl/ustrbuf.hxx> #include <rtl/ustrbuf.hxx>
#include <rtl/ustring.hxx> #include <rtl/ustring.hxx>
#include <sal/config.h>
#include <set> #include <set>
#include <sfx2/QuerySaveDocument.hxx> #include <sfx2/QuerySaveDocument.hxx>
#include <sfx2/app.hxx> #include <sfx2/app.hxx>
...@@ -468,6 +470,7 @@ ...@@ -468,6 +470,7 @@
#include <vcl/graph.hxx> #include <vcl/graph.hxx>
#include <vcl/help.hxx> #include <vcl/help.hxx>
#include <vcl/image.hxx> #include <vcl/image.hxx>
#include <vcl/layout.hxx>
#include <vcl/lineinfo.hxx> #include <vcl/lineinfo.hxx>
#include <vcl/lstbox.hxx> #include <vcl/lstbox.hxx>
#include <vcl/menu.hxx> #include <vcl/menu.hxx>
...@@ -475,6 +478,7 @@ ...@@ -475,6 +478,7 @@
#include <vcl/msgbox.hxx> #include <vcl/msgbox.hxx>
#include <vcl/outdev.hxx> #include <vcl/outdev.hxx>
#include <vcl/scrbar.hxx> #include <vcl/scrbar.hxx>
#include <vcl/settings.hxx>
#include <vcl/split.hxx> #include <vcl/split.hxx>
#include <vcl/stdtext.hxx> #include <vcl/stdtext.hxx>
#include <vcl/svapp.hxx> #include <vcl/svapp.hxx>
......
...@@ -17,6 +17,7 @@ ...@@ -17,6 +17,7 @@
#include "i18nlangtag/lang.h" #include "i18nlangtag/lang.h"
#include "sal/config.h" #include "sal/config.h"
#include "svl/ctloptions.hxx" #include "svl/ctloptions.hxx"
#include "vcl/settings.hxx"
#include "vcl/svapp.hxx" #include "vcl/svapp.hxx"
#include <algorithm> #include <algorithm>
#include <basegfx/color/bcolor.hxx> #include <basegfx/color/bcolor.hxx>
...@@ -70,6 +71,7 @@ ...@@ -70,6 +71,7 @@
#include <com/sun/star/lang/XServiceInfo.hpp> #include <com/sun/star/lang/XServiceInfo.hpp>
#include <com/sun/star/lang/XSingleServiceFactory.hpp> #include <com/sun/star/lang/XSingleServiceFactory.hpp>
#include <com/sun/star/registry/XRegistryKey.hpp> #include <com/sun/star/registry/XRegistryKey.hpp>
#include <com/sun/star/table/BorderLineStyle.hpp>
#include <com/sun/star/text/XText.hpp> #include <com/sun/star/text/XText.hpp>
#include <com/sun/star/uno/Reference.h> #include <com/sun/star/uno/Reference.h>
#include <com/sun/star/uno/RuntimeException.hpp> #include <com/sun/star/uno/RuntimeException.hpp>
...@@ -91,9 +93,11 @@ ...@@ -91,9 +93,11 @@
#include <rtl/strbuf.hxx> #include <rtl/strbuf.hxx>
#include <rtl/ustrbuf.hxx> #include <rtl/ustrbuf.hxx>
#include <rtl/ustring.hxx> #include <rtl/ustring.hxx>
#include <sal/config.h>
#include <svtools/borderhelper.hxx> #include <svtools/borderhelper.hxx>
#include <svtools/grfmgr.hxx> #include <svtools/grfmgr.hxx>
#include <svtools/optionsdrawinglayer.hxx> #include <svtools/optionsdrawinglayer.hxx>
#include <svx/sdr/primitive2d/svx_primitivetypes2d.hxx>
#include <toolkit/awt/vclxwindow.hxx> #include <toolkit/awt/vclxwindow.hxx>
#include <toolkit/helper/formpdfexport.hxx> #include <toolkit/helper/formpdfexport.hxx>
#include <toolkit/helper/vclunohelper.hxx> #include <toolkit/helper/vclunohelper.hxx>
...@@ -101,7 +105,6 @@ ...@@ -101,7 +105,6 @@
#include <tools/diagnose_ex.h> #include <tools/diagnose_ex.h>
#include <tools/gen.hxx> #include <tools/gen.hxx>
#include <tools/stream.hxx> #include <tools/stream.hxx>
#include <uno/environment.h>
#include <vcl/animate.hxx> #include <vcl/animate.hxx>
#include <vcl/bitmapex.hxx> #include <vcl/bitmapex.hxx>
#include <vcl/bmpacc.hxx> #include <vcl/bmpacc.hxx>
......
...@@ -20,6 +20,7 @@ ...@@ -20,6 +20,7 @@
#include "cppuhelper/exc_hlp.hxx" #include "cppuhelper/exc_hlp.hxx"
#include "rtl/ustrbuf.hxx" #include "rtl/ustrbuf.hxx"
#include "sal/log.hxx" #include "sal/log.hxx"
#include "sax/fastparser.hxx"
#include <algorithm> #include <algorithm>
#include <assert.h> #include <assert.h>
#include <basegfx/matrix/b2dhommatrix.hxx> #include <basegfx/matrix/b2dhommatrix.hxx>
...@@ -29,7 +30,9 @@ ...@@ -29,7 +30,9 @@
#include <boost/algorithm/string.hpp> #include <boost/algorithm/string.hpp>
#include <boost/bind.hpp> #include <boost/bind.hpp>
#include <boost/optional.hpp> #include <boost/optional.hpp>
#include <boost/scoped_ptr.hpp>
#include <boost/unordered_map.hpp> #include <boost/unordered_map.hpp>
#include <cassert>
#include <com/sun/star/animations/AnimationCalcMode.hpp> #include <com/sun/star/animations/AnimationCalcMode.hpp>
#include <com/sun/star/animations/AnimationColorSpace.hpp> #include <com/sun/star/animations/AnimationColorSpace.hpp>
#include <com/sun/star/animations/AnimationEndSync.hpp> #include <com/sun/star/animations/AnimationEndSync.hpp>
...@@ -310,6 +313,8 @@ ...@@ -310,6 +313,8 @@
#include <com/sun/star/text/XTextRange.hpp> #include <com/sun/star/text/XTextRange.hpp>
#include <com/sun/star/ucb/SimpleFileAccess.hpp> #include <com/sun/star/ucb/SimpleFileAccess.hpp>
#include <com/sun/star/uno/Any.hxx> #include <com/sun/star/uno/Any.hxx>
#include <com/sun/star/uno/RuntimeException.hpp>
#include <com/sun/star/uno/Sequence.hxx>
#include <com/sun/star/uno/XComponentContext.hpp> #include <com/sun/star/uno/XComponentContext.hpp>
#include <com/sun/star/uri/UriReferenceFactory.hpp> #include <com/sun/star/uri/UriReferenceFactory.hpp>
#include <com/sun/star/util/MeasureUnit.hpp> #include <com/sun/star/util/MeasureUnit.hpp>
...@@ -318,6 +323,7 @@ ...@@ -318,6 +323,7 @@
#include <com/sun/star/xml/AttributeData.hpp> #include <com/sun/star/xml/AttributeData.hpp>
#include <com/sun/star/xml/dom/DocumentBuilder.hpp> #include <com/sun/star/xml/dom/DocumentBuilder.hpp>
#include <com/sun/star/xml/dom/XDocument.hpp> #include <com/sun/star/xml/dom/XDocument.hpp>
#include <com/sun/star/xml/sax/FastParser.hpp>
#include <com/sun/star/xml/sax/FastToken.hpp> #include <com/sun/star/xml/sax/FastToken.hpp>
#include <com/sun/star/xml/sax/InputSource.hpp> #include <com/sun/star/xml/sax/InputSource.hpp>
#include <com/sun/star/xml/sax/XFastContextHandler.hpp> #include <com/sun/star/xml/sax/XFastContextHandler.hpp>
...@@ -330,7 +336,6 @@ ...@@ -330,7 +336,6 @@
#include <comphelper/processfactory.hxx> #include <comphelper/processfactory.hxx>
#include <comphelper/seqstream.hxx> #include <comphelper/seqstream.hxx>
#include <comphelper/sequenceashashmap.hxx> #include <comphelper/sequenceashashmap.hxx>
#include <comphelper/stl_types.hxx>
#include <comphelper/storagehelper.hxx> #include <comphelper/storagehelper.hxx>
#include <comphelper/string.hxx> #include <comphelper/string.hxx>
#include <cppuhelper/implbase1.hxx> #include <cppuhelper/implbase1.hxx>
...@@ -339,6 +344,7 @@ ...@@ -339,6 +344,7 @@
#include <cppuhelper/supportsservice.hxx> #include <cppuhelper/supportsservice.hxx>
#include <cstdio> #include <cstdio>
#include <editeng/escapementitem.hxx> #include <editeng/escapementitem.hxx>
#include <editeng/outlobj.hxx>
#include <editeng/svxenum.hxx> #include <editeng/svxenum.hxx>
#include <editeng/unoprnms.hxx> #include <editeng/unoprnms.hxx>
#include <filter/msfilter/escherex.hxx> #include <filter/msfilter/escherex.hxx>
...@@ -367,6 +373,8 @@ ...@@ -367,6 +373,8 @@
#include <rtl/ustrbuf.h> #include <rtl/ustrbuf.h>
#include <rtl/ustrbuf.hxx> #include <rtl/ustrbuf.hxx>
#include <rtl/ustring.hxx> #include <rtl/ustring.hxx>
#include <sal/config.h>
#include <sax/fastattribs.hxx>
#include <sax/fshelper.hxx> #include <sax/fshelper.hxx>
#include <sax/tools/converter.hxx> #include <sax/tools/converter.hxx>
#include <set> #include <set>
...@@ -383,7 +391,7 @@ ...@@ -383,7 +391,7 @@
#include <svx/svdtrans.hxx> #include <svx/svdtrans.hxx>
#include <svx/unoapi.hxx> #include <svx/unoapi.hxx>
#include <svx/unopage.hxx> #include <svx/unopage.hxx>
#include <time.h> #include <svx/unoshape.hxx>
#include <tools/gen.hxx> #include <tools/gen.hxx>
#include <tools/globname.hxx> #include <tools/globname.hxx>
#include <tools/mapunit.hxx> #include <tools/mapunit.hxx>
...@@ -399,6 +407,7 @@ ...@@ -399,6 +407,7 @@
#include <vcl/graph.hxx> #include <vcl/graph.hxx>
#include <vcl/graphicfilter.hxx> #include <vcl/graphicfilter.hxx>
#include <vcl/outdev.hxx> #include <vcl/outdev.hxx>
#include <vcl/settings.hxx>
#include <vcl/svapp.hxx> #include <vcl/svapp.hxx>
#include <vcl/wmf.hxx> #include <vcl/wmf.hxx>
#include <vector> #include <vector>
......
...@@ -51,6 +51,7 @@ ...@@ -51,6 +51,7 @@
#include "rtl/ustring.hxx" #include "rtl/ustring.hxx"
#include "rtl/uuid.h" #include "rtl/uuid.h"
#include <algorithm> #include <algorithm>
#include <boost/noncopyable.hpp>
#include <boost/unordered_map.hpp> #include <boost/unordered_map.hpp>
#include <cassert> #include <cassert>
#include <config_features.h> #include <config_features.h>
......
...@@ -65,7 +65,6 @@ ...@@ -65,7 +65,6 @@
#include "rtl/bootstrap.hxx" #include "rtl/bootstrap.hxx"
#include "rtl/math.hxx" #include "rtl/math.hxx"
#include "rtl/strbuf.hxx" #include "rtl/strbuf.hxx"
#include "rtl/ustrbuf.hxx"
#include "rtl/ustring.hxx" #include "rtl/ustring.hxx"
#include "sal/types.h" #include "sal/types.h"
#include "sfx2/app.hxx" #include "sfx2/app.hxx"
...@@ -86,13 +85,13 @@ ...@@ -86,13 +85,13 @@
#include "svl/zforlist.hxx" #include "svl/zforlist.hxx"
#include "svl/zformat.hxx" #include "svl/zformat.hxx"
#include "svtools/fmtfield.hxx" #include "svtools/fmtfield.hxx"
#include "svtools/optionsdrawinglayer.hxx"
#include "svtools/svlbitm.hxx" #include "svtools/svlbitm.hxx"
#include "svtools/treelistbox.hxx" #include "svtools/treelistbox.hxx"
#include "svtools/treelistentry.hxx" #include "svtools/treelistentry.hxx"
#include "svtools/viewdataentry.hxx" #include "svtools/viewdataentry.hxx"
#include "svx/dataaccessdescriptor.hxx" #include "svx/dataaccessdescriptor.hxx"
#include "svx/sdr/overlay/overlaymanager.hxx" #include "svx/sdr/overlay/overlaymanager.hxx"
#include "svx/unoapi.hxx"
#include "tools/color.hxx" #include "tools/color.hxx"
#include "tools/fract.hxx" #include "tools/fract.hxx"
#include "tools/gen.hxx" #include "tools/gen.hxx"
...@@ -133,6 +132,7 @@ ...@@ -133,6 +132,7 @@
#include <basic/sbxobj.hxx> #include <basic/sbxobj.hxx>
#include <boost/bind.hpp> #include <boost/bind.hpp>
#include <boost/foreach.hpp> #include <boost/foreach.hpp>
#include <boost/noncopyable.hpp>
#include <boost/ptr_container/ptr_vector.hpp> #include <boost/ptr_container/ptr_vector.hpp>
#include <boost/random.hpp> #include <boost/random.hpp>
#include <boost/random/bernoulli_distribution.hpp> #include <boost/random/bernoulli_distribution.hpp>
...@@ -144,10 +144,12 @@ ...@@ -144,10 +144,12 @@
#include <boost/random/normal_distribution.hpp> #include <boost/random/normal_distribution.hpp>
#include <boost/random/uniform_int_distribution.hpp> #include <boost/random/uniform_int_distribution.hpp>
#include <boost/random/uniform_real_distribution.hpp> #include <boost/random/uniform_real_distribution.hpp>
#include <boost/scoped_array.hpp>
#include <boost/scoped_ptr.hpp> #include <boost/scoped_ptr.hpp>
#include <boost/shared_ptr.hpp> #include <boost/shared_ptr.hpp>
#include <boost/unordered_map.hpp> #include <boost/unordered_map.hpp>
#include <boost/unordered_set.hpp> #include <boost/unordered_set.hpp>
#include <cassert>
#include <climits> #include <climits>
#include <com/sun/star/accessibility/AccessibleEventId.hpp> #include <com/sun/star/accessibility/AccessibleEventId.hpp>
#include <com/sun/star/accessibility/AccessibleEventObject.hpp> #include <com/sun/star/accessibility/AccessibleEventObject.hpp>
...@@ -162,6 +164,7 @@ ...@@ -162,6 +164,7 @@
#include <com/sun/star/accessibility/XAccessibleContext.hpp> #include <com/sun/star/accessibility/XAccessibleContext.hpp>
#include <com/sun/star/accessibility/XAccessibleStateSet.hpp> #include <com/sun/star/accessibility/XAccessibleStateSet.hpp>
#include <com/sun/star/accessibility/XAccessibleTable.hpp> #include <com/sun/star/accessibility/XAccessibleTable.hpp>
#include <com/sun/star/accessibility/XAccessibleText.hpp>
#include <com/sun/star/awt/CharSet.hpp> #include <com/sun/star/awt/CharSet.hpp>
#include <com/sun/star/awt/FontDescriptor.hpp> #include <com/sun/star/awt/FontDescriptor.hpp>
#include <com/sun/star/awt/FontFamily.hpp> #include <com/sun/star/awt/FontFamily.hpp>
...@@ -180,7 +183,6 @@ ...@@ -180,7 +183,6 @@
#include <com/sun/star/awt/XBitmap.hpp> #include <com/sun/star/awt/XBitmap.hpp>
#include <com/sun/star/awt/XControlModel.hpp> #include <com/sun/star/awt/XControlModel.hpp>
#include <com/sun/star/awt/XFont.hpp> #include <com/sun/star/awt/XFont.hpp>
#include <com/sun/star/beans/Introspection.hpp>
#include <com/sun/star/beans/MethodConcept.hpp> #include <com/sun/star/beans/MethodConcept.hpp>
#include <com/sun/star/beans/NamedValue.hpp> #include <com/sun/star/beans/NamedValue.hpp>
#include <com/sun/star/beans/PropertyAttribute.hpp> #include <com/sun/star/beans/PropertyAttribute.hpp>
...@@ -193,6 +195,7 @@ ...@@ -193,6 +195,7 @@
#include <com/sun/star/beans/XPropertySet.hpp> #include <com/sun/star/beans/XPropertySet.hpp>
#include <com/sun/star/beans/XPropertySetInfo.hpp> #include <com/sun/star/beans/XPropertySetInfo.hpp>
#include <com/sun/star/beans/XPropertyState.hpp> #include <com/sun/star/beans/XPropertyState.hpp>
#include <com/sun/star/beans/theIntrospection.hpp>
#include <com/sun/star/chart/ChartDataRowSource.hpp> #include <com/sun/star/chart/ChartDataRowSource.hpp>
#include <com/sun/star/chart/XChartDocument.hpp> #include <com/sun/star/chart/XChartDocument.hpp>
#include <com/sun/star/chart2/XChartDocument.hpp> #include <com/sun/star/chart2/XChartDocument.hpp>
...@@ -224,6 +227,7 @@ ...@@ -224,6 +227,7 @@
#include <com/sun/star/document/XDocumentPropertiesSupplier.hpp> #include <com/sun/star/document/XDocumentPropertiesSupplier.hpp>
#include <com/sun/star/document/XEmbeddedObjectSupplier.hpp> #include <com/sun/star/document/XEmbeddedObjectSupplier.hpp>
#include <com/sun/star/document/XStorageBasedDocument.hpp> #include <com/sun/star/document/XStorageBasedDocument.hpp>
#include <com/sun/star/drawing/ShapeCollection.hpp>
#include <com/sun/star/drawing/XDrawPageSupplier.hpp> #include <com/sun/star/drawing/XDrawPageSupplier.hpp>
#include <com/sun/star/drawing/XDrawPagesSupplier.hpp> #include <com/sun/star/drawing/XDrawPagesSupplier.hpp>
#include <com/sun/star/drawing/XShape.hpp> #include <com/sun/star/drawing/XShape.hpp>
...@@ -276,6 +280,7 @@ ...@@ -276,6 +280,7 @@
#include <com/sun/star/lang/Locale.hpp> #include <com/sun/star/lang/Locale.hpp>
#include <com/sun/star/lang/NotInitializedException.hpp> #include <com/sun/star/lang/NotInitializedException.hpp>
#include <com/sun/star/lang/ServiceNotRegisteredException.hpp> #include <com/sun/star/lang/ServiceNotRegisteredException.hpp>
#include <com/sun/star/lang/WrappedTargetRuntimeException.hpp>
#include <com/sun/star/lang/XComponent.hpp> #include <com/sun/star/lang/XComponent.hpp>
#include <com/sun/star/lang/XInitialization.hpp> #include <com/sun/star/lang/XInitialization.hpp>
#include <com/sun/star/lang/XMultiServiceFactory.hpp> #include <com/sun/star/lang/XMultiServiceFactory.hpp>
...@@ -390,6 +395,8 @@ ...@@ -390,6 +395,8 @@
#include <com/sun/star/sheet/XNamedRanges.hpp> #include <com/sun/star/sheet/XNamedRanges.hpp>
#include <com/sun/star/sheet/XPrintAreas.hpp> #include <com/sun/star/sheet/XPrintAreas.hpp>
#include <com/sun/star/sheet/XSelectedSheetsSupplier.hpp> #include <com/sun/star/sheet/XSelectedSheetsSupplier.hpp>
#include <com/sun/star/sheet/XSheetAnnotation.hpp>
#include <com/sun/star/sheet/XSheetAnnotationAnchor.hpp>
#include <com/sun/star/sheet/XSheetAnnotationsSupplier.hpp> #include <com/sun/star/sheet/XSheetAnnotationsSupplier.hpp>
#include <com/sun/star/sheet/XSheetCellRange.hpp> #include <com/sun/star/sheet/XSheetCellRange.hpp>
#include <com/sun/star/sheet/XSheetCondition.hpp> #include <com/sun/star/sheet/XSheetCondition.hpp>
...@@ -457,13 +464,14 @@ ...@@ -457,13 +464,14 @@
#include <com/sun/star/ucb/XContent.hpp> #include <com/sun/star/ucb/XContent.hpp>
#include <com/sun/star/ucb/XContentAccess.hpp> #include <com/sun/star/ucb/XContentAccess.hpp>
#include <com/sun/star/ucb/XSimpleFileAccess3.hpp> #include <com/sun/star/ucb/XSimpleFileAccess3.hpp>
#include <com/sun/star/ui/theModuleUIConfigurationManagerSupplier.hpp>
#include <com/sun/star/ui/XAcceleratorConfiguration.hpp> #include <com/sun/star/ui/XAcceleratorConfiguration.hpp>
#include <com/sun/star/ui/XUIElement.hpp>
#include <com/sun/star/ui/dialogs/ExecutableDialogResults.hpp> #include <com/sun/star/ui/dialogs/ExecutableDialogResults.hpp>
#include <com/sun/star/ui/dialogs/FilePicker.hpp> #include <com/sun/star/ui/dialogs/FilePicker.hpp>
#include <com/sun/star/ui/dialogs/TemplateDescription.hpp> #include <com/sun/star/ui/dialogs/TemplateDescription.hpp>
#include <com/sun/star/ui/dialogs/XExecutableDialog.hpp> #include <com/sun/star/ui/dialogs/XExecutableDialog.hpp>
#include <com/sun/star/ui/dialogs/XSLTFilterDialog.hpp> #include <com/sun/star/ui/dialogs/XSLTFilterDialog.hpp>
#include <com/sun/star/ui/theModuleUIConfigurationManagerSupplier.hpp>
#include <com/sun/star/uno/Any.hxx> #include <com/sun/star/uno/Any.hxx>
#include <com/sun/star/uno/Exception.hpp> #include <com/sun/star/uno/Exception.hpp>
#include <com/sun/star/uno/Reference.h> #include <com/sun/star/uno/Reference.h>
...@@ -506,21 +514,23 @@ ...@@ -506,21 +514,23 @@
#include <comphelper/propertysetinfo.hxx> #include <comphelper/propertysetinfo.hxx>
#include <comphelper/sequence.hxx> #include <comphelper/sequence.hxx>
#include <comphelper/servicehelper.hxx> #include <comphelper/servicehelper.hxx>
#include <comphelper/stl_types.hxx>
#include <comphelper/storagehelper.hxx> #include <comphelper/storagehelper.hxx>
#include <comphelper/string.hxx> #include <comphelper/string.hxx>
#include <comphelper/types.hxx> #include <comphelper/types.hxx>
#include <comphelper/uno3.hxx> #include <comphelper/uno3.hxx>
#include <config_features.h> #include <config_features.h>
#include <config_mpl.h> #include <config_mpl.h>
#include <config_options.h>
#include <config_orcus.h> #include <config_orcus.h>
#include <config_telepathy.h> #include <config_telepathy.h>
#include <cppuhelper/bootstrap.hxx> #include <cppuhelper/bootstrap.hxx>
#include <cppuhelper/component_context.hxx> #include <cppuhelper/component_context.hxx>
#include <cppuhelper/factory.hxx> #include <cppuhelper/factory.hxx>
#include <cppuhelper/implbase2.hxx> #include <cppuhelper/implbase2.hxx>
#include <cppuhelper/supportsservice.hxx>
#include <cstddef> #include <cstddef>
#include <cstdio> #include <cstdio>
#include <cstdlib>
#include <cstring> #include <cstring>
#include <ctype.h> #include <ctype.h>
#include <drawinglayer/geometry/viewinformation2d.hxx> #include <drawinglayer/geometry/viewinformation2d.hxx>
...@@ -596,11 +606,14 @@ ...@@ -596,11 +606,14 @@
#include <formula/IFunctionDescription.hxx> #include <formula/IFunctionDescription.hxx>
#include <formula/errorcodes.hxx> #include <formula/errorcodes.hxx>
#include <formula/formulahelper.hxx> #include <formula/formulahelper.hxx>
#include <formula/grammar.hxx>
#include <formula/token.hxx> #include <formula/token.hxx>
#include <formula/vectortoken.hxx>
#include <functional> #include <functional>
#include <i18nlangtag/lang.h> #include <i18nlangtag/lang.h>
#include <i18nlangtag/languagetag.hxx> #include <i18nlangtag/languagetag.hxx>
#include <i18nlangtag/mslangid.hxx> #include <i18nlangtag/mslangid.hxx>
#include <i18nutil/unicode.hxx>
#include <iostream> #include <iostream>
#include <limits.h> #include <limits.h>
#include <limits> #include <limits>
...@@ -615,12 +628,15 @@ ...@@ -615,12 +628,15 @@
#include <numeric> #include <numeric>
#include <officecfg/Office/Calc.hxx> #include <officecfg/Office/Calc.hxx>
#include <officecfg/Office/Common.hxx> #include <officecfg/Office/Common.hxx>
#include <osl/conditn.hxx>
#include <osl/diagnose.h> #include <osl/diagnose.h>
#include <osl/file.hxx> #include <osl/file.hxx>
#include <osl/module.hxx> #include <osl/module.hxx>
#include <osl/mutex.hxx> #include <osl/mutex.hxx>
#include <osl/security.hxx> #include <osl/security.hxx>
#include <osl/thread.h> #include <osl/thread.h>
#include <osl/time.h>
#include <queue>
#include <rsc/rscsfx.hxx> #include <rsc/rscsfx.hxx>
#include <rtl/crc.h> #include <rtl/crc.h>
#include <rtl/instance.hxx> #include <rtl/instance.hxx>
...@@ -631,8 +647,11 @@ ...@@ -631,8 +647,11 @@
#include <rtl/ustrbuf.hxx> #include <rtl/ustrbuf.hxx>
#include <rtl/ustring.hxx> #include <rtl/ustring.hxx>
#include <sal/alloca.h> #include <sal/alloca.h>
#include <sal/config.h>
#include <sal/log.hxx>
#include <sal/macros.h> #include <sal/macros.h>
#include <sal/types.h> #include <sal/types.h>
#include <salhelper/thread.hxx>
#include <sax/tools/converter.hxx> #include <sax/tools/converter.hxx>
#include <set> #include <set>
#include <sfx2/DocumentMetadataAccess.hxx> #include <sfx2/DocumentMetadataAccess.hxx>
...@@ -690,6 +709,7 @@ ...@@ -690,6 +709,7 @@
#include <stdlib.h> #include <stdlib.h>
#include <string.h> #include <string.h>
#include <string> #include <string>
#include <svl/IndexedStyleSheets.hxx>
#include <svl/PasswordHelper.hxx> #include <svl/PasswordHelper.hxx>
#include <svl/aeitem.hxx> #include <svl/aeitem.hxx>
#include <svl/asiancfg.hxx> #include <svl/asiancfg.hxx>
...@@ -703,6 +723,7 @@ ...@@ -703,6 +723,7 @@
#include <svl/globalnameitem.hxx> #include <svl/globalnameitem.hxx>
#include <svl/ilstitem.hxx> #include <svl/ilstitem.hxx>
#include <svl/inethist.hxx> #include <svl/inethist.hxx>
#include <svl/int64item.hxx>
#include <svl/intitem.hxx> #include <svl/intitem.hxx>
#include <svl/isethint.hxx> #include <svl/isethint.hxx>
#include <svl/itemiter.hxx> #include <svl/itemiter.hxx>
...@@ -718,6 +739,7 @@ ...@@ -718,6 +739,7 @@
#include <svl/ptitem.hxx> #include <svl/ptitem.hxx>
#include <svl/rectitem.hxx> #include <svl/rectitem.hxx>
#include <svl/sharecontrolfile.hxx> #include <svl/sharecontrolfile.hxx>
#include <svl/sharedstringpool.hxx>
#include <svl/slstitm.hxx> #include <svl/slstitm.hxx>
#include <svl/smplhint.hxx> #include <svl/smplhint.hxx>
#include <svl/srchitem.hxx> #include <svl/srchitem.hxx>
...@@ -737,6 +759,7 @@ ...@@ -737,6 +759,7 @@
#include <svtools/embedhlp.hxx> #include <svtools/embedhlp.hxx>
#include <svtools/embedtransfer.hxx> #include <svtools/embedtransfer.hxx>
#include <svtools/imapobj.hxx> #include <svtools/imapobj.hxx>
#include <svtools/inettbc.hxx>
#include <svtools/insdlg.hxx> #include <svtools/insdlg.hxx>
#include <svtools/langtab.hxx> #include <svtools/langtab.hxx>
#include <svtools/miscopt.hxx> #include <svtools/miscopt.hxx>
...@@ -745,6 +768,7 @@ ...@@ -745,6 +768,7 @@
#include <svtools/simptabl.hxx> #include <svtools/simptabl.hxx>
#include <svtools/soerr.hxx> #include <svtools/soerr.hxx>
#include <svtools/stdctrl.hxx> #include <svtools/stdctrl.hxx>
#include <svtools/svlbitm.hxx>
#include <svtools/svtabbx.hxx> #include <svtools/svtabbx.hxx>
#include <svtools/transfer.hxx> #include <svtools/transfer.hxx>
#include <svtools/treelistbox.hxx> #include <svtools/treelistbox.hxx>
...@@ -752,12 +776,14 @@ ...@@ -752,12 +776,14 @@
#include <svtools/unoevent.hxx> #include <svtools/unoevent.hxx>
#include <svtools/unoimap.hxx> #include <svtools/unoimap.hxx>
#include <svtools/xwindowitem.hxx> #include <svtools/xwindowitem.hxx>
#include <svx/AccessibleControlShape.hxx>
#include <svx/AccessibleShape.hxx> #include <svx/AccessibleShape.hxx>
#include <svx/AccessibleShapeInfo.hxx> #include <svx/AccessibleShapeInfo.hxx>
#include <svx/AccessibleShapeTreeInfo.hxx> #include <svx/AccessibleShapeTreeInfo.hxx>
#include <svx/AccessibleTextHelper.hxx> #include <svx/AccessibleTextHelper.hxx>
#include <svx/AffineMatrixItem.hxx> #include <svx/AffineMatrixItem.hxx>
#include <svx/ShapeTypeHandler.hxx> #include <svx/ShapeTypeHandler.hxx>
#include <svx/SvxShapeTypes.hxx>
#include <svx/algitem.hxx> #include <svx/algitem.hxx>
#include <svx/charthelper.hxx> #include <svx/charthelper.hxx>
#include <svx/chrtitem.hxx> #include <svx/chrtitem.hxx>
...@@ -777,6 +803,7 @@ ...@@ -777,6 +803,7 @@
#include <svx/fmglob.hxx> #include <svx/fmglob.hxx>
#include <svx/fmmodel.hxx> #include <svx/fmmodel.hxx>
#include <svx/fmobjfac.hxx> #include <svx/fmobjfac.hxx>
#include <svx/fmpage.hxx>
#include <svx/fmshell.hxx> #include <svx/fmshell.hxx>
#include <svx/fmview.hxx> #include <svx/fmview.hxx>
#include <svx/fntctl.hxx> #include <svx/fntctl.hxx>
...@@ -934,6 +961,7 @@ ...@@ -934,6 +961,7 @@
#include <tools/resid.hxx> #include <tools/resid.hxx>
#include <tools/rtti.hxx> #include <tools/rtti.hxx>
#include <tools/shl.hxx> #include <tools/shl.hxx>
#include <tools/solar.h>
#include <tools/stream.hxx> #include <tools/stream.hxx>
#include <tools/tenccvt.hxx> #include <tools/tenccvt.hxx>
#include <tools/urlobj.hxx> #include <tools/urlobj.hxx>
...@@ -981,6 +1009,7 @@ ...@@ -981,6 +1009,7 @@
#include <vcl/i18nhelp.hxx> #include <vcl/i18nhelp.hxx>
#include <vcl/image.hxx> #include <vcl/image.hxx>
#include <vcl/keycodes.hxx> #include <vcl/keycodes.hxx>
#include <vcl/layout.hxx>
#include <vcl/lineinfo.hxx> #include <vcl/lineinfo.hxx>
#include <vcl/lstbox.hxx> #include <vcl/lstbox.hxx>
#include <vcl/metric.hxx> #include <vcl/metric.hxx>
......
...@@ -18,6 +18,7 @@ ...@@ -18,6 +18,7 @@
#include "cppuhelper/implementationentry.hxx" #include "cppuhelper/implementationentry.hxx"
#include "editeng/editstat.hxx" #include "editeng/editstat.hxx"
#include "formula/errorcodes.hxx" #include "formula/errorcodes.hxx"
#include "officecfg/Office/Common.hxx"
#include "oox/core/filterbase.hxx" #include "oox/core/filterbase.hxx"
#include "oox/core/relations.hxx" #include "oox/core/relations.hxx"
#include "oox/core/xmlfilterbase.hxx" #include "oox/core/xmlfilterbase.hxx"
...@@ -44,7 +45,6 @@ ...@@ -44,7 +45,6 @@
#include "oox/token/tokens.hxx" #include "oox/token/tokens.hxx"
#include "oox/vml/vmlshape.hxx" #include "oox/vml/vmlshape.hxx"
#include "oox/vml/vmlshapecontainer.hxx" #include "oox/vml/vmlshapecontainer.hxx"
#include "rtl/ref.hxx"
#include "rtl/strbuf.hxx" #include "rtl/strbuf.hxx"
#include "sal/config.h" #include "sal/config.h"
#include "sal/types.h" #include "sal/types.h"
...@@ -71,6 +71,7 @@ ...@@ -71,6 +71,7 @@
#include <boost/scoped_array.hpp> #include <boost/scoped_array.hpp>
#include <boost/scoped_ptr.hpp> #include <boost/scoped_ptr.hpp>
#include <boost/shared_ptr.hpp> #include <boost/shared_ptr.hpp>
#include <cassert>
#include <com/sun/star/awt/DeviceInfo.hpp> #include <com/sun/star/awt/DeviceInfo.hpp>
#include <com/sun/star/awt/FontDescriptor.hpp> #include <com/sun/star/awt/FontDescriptor.hpp>
#include <com/sun/star/awt/FontFamily.hpp> #include <com/sun/star/awt/FontFamily.hpp>
...@@ -299,6 +300,7 @@ ...@@ -299,6 +300,7 @@
#include <com/sun/star/style/VerticalAlignment.hpp> #include <com/sun/star/style/VerticalAlignment.hpp>
#include <com/sun/star/style/XStyle.hpp> #include <com/sun/star/style/XStyle.hpp>
#include <com/sun/star/style/XStyleFamiliesSupplier.hpp> #include <com/sun/star/style/XStyleFamiliesSupplier.hpp>
#include <com/sun/star/table/BorderLineStyle.hpp>
#include <com/sun/star/table/CellAddress.hpp> #include <com/sun/star/table/CellAddress.hpp>
#include <com/sun/star/table/CellContentType.hpp> #include <com/sun/star/table/CellContentType.hpp>
#include <com/sun/star/table/CellJustifyMethod.hpp> #include <com/sun/star/table/CellJustifyMethod.hpp>
...@@ -310,6 +312,7 @@ ...@@ -310,6 +312,7 @@
#include <com/sun/star/table/XCell2.hpp> #include <com/sun/star/table/XCell2.hpp>
#include <com/sun/star/table/XCellRange.hpp> #include <com/sun/star/table/XCellRange.hpp>
#include <com/sun/star/table/XColumnRowRange.hpp> #include <com/sun/star/table/XColumnRowRange.hpp>
#include <com/sun/star/task/XStatusIndicator.hpp>
#include <com/sun/star/text/FilenameDisplayFormat.hpp> #include <com/sun/star/text/FilenameDisplayFormat.hpp>
#include <com/sun/star/text/WritingMode2.hpp> #include <com/sun/star/text/WritingMode2.hpp>
#include <com/sun/star/text/XText.hpp> #include <com/sun/star/text/XText.hpp>
...@@ -317,9 +320,9 @@ ...@@ -317,9 +320,9 @@
#include <com/sun/star/text/XTextCursor.hpp> #include <com/sun/star/text/XTextCursor.hpp>
#include <com/sun/star/text/XTextRange.hpp> #include <com/sun/star/text/XTextRange.hpp>
#include <com/sun/star/ui/ItemType.hpp> #include <com/sun/star/ui/ItemType.hpp>
#include <com/sun/star/ui/theModuleUIConfigurationManagerSupplier.hpp>
#include <com/sun/star/ui/XImageManager.hpp> #include <com/sun/star/ui/XImageManager.hpp>
#include <com/sun/star/ui/XUIConfigurationPersistence.hpp> #include <com/sun/star/ui/XUIConfigurationPersistence.hpp>
#include <com/sun/star/ui/theModuleUIConfigurationManagerSupplier.hpp>
#include <com/sun/star/uno/Reference.h> #include <com/sun/star/uno/Reference.h>
#include <com/sun/star/uno/XComponentContext.hpp> #include <com/sun/star/uno/XComponentContext.hpp>
#include <com/sun/star/util/Date.hpp> #include <com/sun/star/util/Date.hpp>
...@@ -339,6 +342,7 @@ ...@@ -339,6 +342,7 @@
#include <config_orcus.h> #include <config_orcus.h>
#include <cppuhelper/component_context.hxx> #include <cppuhelper/component_context.hxx>
#include <cppuhelper/implbase1.hxx> #include <cppuhelper/implbase1.hxx>
#include <cppuhelper/supportsservice.hxx>
#include <cstring> #include <cstring>
#include <ctype.h> #include <ctype.h>
#include <editeng/adjustitem.hxx> #include <editeng/adjustitem.hxx>
...@@ -397,6 +401,7 @@ ...@@ -397,6 +401,7 @@
#include <officecfg/Setup.hxx> #include <officecfg/Setup.hxx>
#include <officecfg/System.hxx> #include <officecfg/System.hxx>
#include <oox/core/contexthandler.hxx> #include <oox/core/contexthandler.hxx>
#include <oox/core/fastparser.hxx>
#include <oox/core/filterbase.hxx> #include <oox/core/filterbase.hxx>
#include <oox/core/xmlfilterbase.hxx> #include <oox/core/xmlfilterbase.hxx>
#include <oox/export/chartexport.hxx> #include <oox/export/chartexport.hxx>
...@@ -413,10 +418,12 @@ ...@@ -413,10 +418,12 @@
#include <oox/ole/vbaproject.hxx> #include <oox/ole/vbaproject.hxx>
#include <oox/token/properties.hxx> #include <oox/token/properties.hxx>
#include <oox/token/tokens.hxx> #include <oox/token/tokens.hxx>
#include <osl/conditn.hxx>
#include <osl/diagnose.h> #include <osl/diagnose.h>
#include <osl/endian.h> #include <osl/endian.h>
#include <osl/mutex.hxx> #include <osl/mutex.hxx>
#include <osl/thread.h> #include <osl/thread.h>
#include <queue>
#include <rtl/math.hxx> #include <rtl/math.hxx>
#include <rtl/random.h> #include <rtl/random.h>
#include <rtl/strbuf.hxx> #include <rtl/strbuf.hxx>
...@@ -430,6 +437,7 @@ ...@@ -430,6 +437,7 @@
#include <sal/log.hxx> #include <sal/log.hxx>
#include <sal/macros.h> #include <sal/macros.h>
#include <sal/mathconf.h> #include <sal/mathconf.h>
#include <salhelper/thread.hxx>
#include <sax/fshelper.hxx> #include <sax/fshelper.hxx>
#include <sax/tools/converter.hxx> #include <sax/tools/converter.hxx>
#include <set> #include <set>
...@@ -456,6 +464,7 @@ ...@@ -456,6 +464,7 @@
#include <svl/itemset.hxx> #include <svl/itemset.hxx>
#include <svl/languageoptions.hxx> #include <svl/languageoptions.hxx>
#include <svl/poolitem.hxx> #include <svl/poolitem.hxx>
#include <svl/sharedstringpool.hxx>
#include <svl/stritem.hxx> #include <svl/stritem.hxx>
#include <svl/style.hxx> #include <svl/style.hxx>
#include <svl/urihelper.hxx> #include <svl/urihelper.hxx>
...@@ -538,7 +547,9 @@ ...@@ -538,7 +547,9 @@
#include <vcl/graph.hxx> #include <vcl/graph.hxx>
#include <vcl/graphicfilter.hxx> #include <vcl/graphicfilter.hxx>
#include <vcl/outdev.hxx> #include <vcl/outdev.hxx>
#include <vcl/settings.hxx>
#include <vcl/svapp.hxx> #include <vcl/svapp.hxx>
#include <vcl/timer.hxx>
#include <vcl/virdev.hxx> #include <vcl/virdev.hxx>
#include <vcl/wmf.hxx> #include <vcl/wmf.hxx>
#include <vector> #include <vector>
......
...@@ -21,10 +21,11 @@ ...@@ -21,10 +21,11 @@
#include <boost/scoped_ptr.hpp> #include <boost/scoped_ptr.hpp>
#include <cmath> #include <cmath>
#include <config_folders.h> #include <config_folders.h>
#include <float.h>
#include <iostream> #include <iostream>
#include <list> #include <list>
#include <map> #include <map>
#include <memory> #include <math.h>
#include <osl/file.hxx> #include <osl/file.hxx>
#include <rtl/bootstrap.hxx> #include <rtl/bootstrap.hxx>
#include <rtl/digest.h> #include <rtl/digest.h>
...@@ -34,5 +35,7 @@ ...@@ -34,5 +35,7 @@
#include <stdio.h> #include <stdio.h>
#include <stdlib.h> #include <stdlib.h>
#include <string.h> #include <string.h>
#include <time.h>
#include <vector>
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
...@@ -26,6 +26,7 @@ ...@@ -26,6 +26,7 @@
#include <basic/sbuno.hxx> #include <basic/sbuno.hxx>
#include <basic/sbx.hxx> #include <basic/sbx.hxx>
#include <basic/sbxobj.hxx> #include <basic/sbxobj.hxx>
#include <boost/scoped_ptr.hpp>
#include <boost/unordered_map.hpp> #include <boost/unordered_map.hpp>
#include <com/sun/star/awt/FontSlant.hpp> #include <com/sun/star/awt/FontSlant.hpp>
#include <com/sun/star/awt/FontStrikeout.hpp> #include <com/sun/star/awt/FontStrikeout.hpp>
...@@ -182,7 +183,7 @@ ...@@ -182,7 +183,7 @@
#include <com/sun/star/uri/XUriReferenceFactory.hpp> #include <com/sun/star/uri/XUriReferenceFactory.hpp>
#include <com/sun/star/util/CellProtection.hpp> #include <com/sun/star/util/CellProtection.hpp>
#include <com/sun/star/util/NumberFormat.hpp> #include <com/sun/star/util/NumberFormat.hpp>
#include <com/sun/star/util/thePathSettings.hpp> #include <com/sun/star/util/PathSettings.hpp>
#include <com/sun/star/util/TriState.hpp> #include <com/sun/star/util/TriState.hpp>
#include <com/sun/star/util/XChangesListener.hpp> #include <com/sun/star/util/XChangesListener.hpp>
#include <com/sun/star/util/XChangesNotifier.hpp> #include <com/sun/star/util/XChangesNotifier.hpp>
......
...@@ -45,6 +45,7 @@ ...@@ -45,6 +45,7 @@
#include <avmedia/mediaplayer.hxx> #include <avmedia/mediaplayer.hxx>
#include <avmedia/mediatoolbox.hxx> #include <avmedia/mediatoolbox.hxx>
#include <avmedia/mediawindow.hxx> #include <avmedia/mediawindow.hxx>
#include <avmedia/modeltools.hxx>
#include <basegfx/color/bcolor.hxx> #include <basegfx/color/bcolor.hxx>
#include <basegfx/matrix/b2dhommatrix.hxx> #include <basegfx/matrix/b2dhommatrix.hxx>
#include <basegfx/matrix/b2dhommatrixtools.hxx> #include <basegfx/matrix/b2dhommatrixtools.hxx>
...@@ -70,6 +71,7 @@ ...@@ -70,6 +71,7 @@
#include <boost/foreach.hpp> #include <boost/foreach.hpp>
#include <boost/function.hpp> #include <boost/function.hpp>
#include <boost/limits.hpp> #include <boost/limits.hpp>
#include <boost/make_shared.hpp>
#include <boost/optional.hpp> #include <boost/optional.hpp>
#include <boost/ptr_container/ptr_vector.hpp> #include <boost/ptr_container/ptr_vector.hpp>
#include <boost/scoped_array.hpp> #include <boost/scoped_array.hpp>
...@@ -165,6 +167,7 @@ ...@@ -165,6 +167,7 @@
#include <com/sun/star/drawing/GraphicExportFilter.hpp> #include <com/sun/star/drawing/GraphicExportFilter.hpp>
#include <com/sun/star/drawing/GraphicFilterRequest.hpp> #include <com/sun/star/drawing/GraphicFilterRequest.hpp>
#include <com/sun/star/drawing/LineStyle.hpp> #include <com/sun/star/drawing/LineStyle.hpp>
#include <com/sun/star/drawing/ShapeCollection.hpp>
#include <com/sun/star/drawing/XDrawPage.hpp> #include <com/sun/star/drawing/XDrawPage.hpp>
#include <com/sun/star/drawing/XDrawPages.hpp> #include <com/sun/star/drawing/XDrawPages.hpp>
#include <com/sun/star/drawing/XDrawPagesSupplier.hpp> #include <com/sun/star/drawing/XDrawPagesSupplier.hpp>
...@@ -203,14 +206,12 @@ ...@@ -203,14 +206,12 @@
#include <com/sun/star/embed/XTransactedObject.hpp> #include <com/sun/star/embed/XTransactedObject.hpp>
#include <com/sun/star/embed/XVisualObject.hpp> #include <com/sun/star/embed/XVisualObject.hpp>
#include <com/sun/star/form/FormButtonType.hpp> #include <com/sun/star/form/FormButtonType.hpp>
#include <com/sun/star/frame/theAutoRecovery.hpp>
#include <com/sun/star/frame/Desktop.hpp> #include <com/sun/star/frame/Desktop.hpp>
#include <com/sun/star/frame/DispatchResultState.hpp> #include <com/sun/star/frame/DispatchResultState.hpp>
#include <com/sun/star/frame/DocumentTemplates.hpp> #include <com/sun/star/frame/DocumentTemplates.hpp>
#include <com/sun/star/frame/FrameAction.hpp> #include <com/sun/star/frame/FrameAction.hpp>
#include <com/sun/star/frame/FrameActionEvent.hpp> #include <com/sun/star/frame/FrameActionEvent.hpp>
#include <com/sun/star/frame/ModuleManager.hpp> #include <com/sun/star/frame/ModuleManager.hpp>
#include <com/sun/star/frame/theUICommandDescription.hpp>
#include <com/sun/star/frame/UnknownModuleException.hpp> #include <com/sun/star/frame/UnknownModuleException.hpp>
#include <com/sun/star/frame/XComponentLoader.hpp> #include <com/sun/star/frame/XComponentLoader.hpp>
#include <com/sun/star/frame/XController.hpp> #include <com/sun/star/frame/XController.hpp>
...@@ -224,6 +225,8 @@ ...@@ -224,6 +225,8 @@
#include <com/sun/star/frame/XStatusListener.hpp> #include <com/sun/star/frame/XStatusListener.hpp>
#include <com/sun/star/frame/XStorable.hpp> #include <com/sun/star/frame/XStorable.hpp>
#include <com/sun/star/frame/status/FontHeight.hpp> #include <com/sun/star/frame/status/FontHeight.hpp>
#include <com/sun/star/frame/theAutoRecovery.hpp>
#include <com/sun/star/frame/theUICommandDescription.hpp>
#include <com/sun/star/gallery/GalleryItemType.hpp> #include <com/sun/star/gallery/GalleryItemType.hpp>
#include <com/sun/star/geometry/RealPoint2D.hpp> #include <com/sun/star/geometry/RealPoint2D.hpp>
#include <com/sun/star/graphic/GraphicProvider.hpp> #include <com/sun/star/graphic/GraphicProvider.hpp>
...@@ -361,9 +364,11 @@ ...@@ -361,9 +364,11 @@
#include <comphelper/sequence.hxx> #include <comphelper/sequence.hxx>
#include <comphelper/servicehelper.hxx> #include <comphelper/servicehelper.hxx>
#include <comphelper/serviceinfohelper.hxx> #include <comphelper/serviceinfohelper.hxx>
#include <comphelper/stl_types.hxx>
#include <comphelper/storagehelper.hxx> #include <comphelper/storagehelper.hxx>
#include <comphelper/string.hxx> #include <comphelper/string.hxx>
#include <config_features.h>
#include <config_libraries.h>
#include <config_options.h>
#include <cppcanvas/basegfxfactory.hxx> #include <cppcanvas/basegfxfactory.hxx>
#include <cppcanvas/vclfactory.hxx> #include <cppcanvas/vclfactory.hxx>
#include <cppuhelper/basemutex.hxx> #include <cppuhelper/basemutex.hxx>
...@@ -384,6 +389,7 @@ ...@@ -384,6 +389,7 @@
#include <cppuhelper/weak.hxx> #include <cppuhelper/weak.hxx>
#include <cstddef> #include <cstddef>
#include <cstdio> #include <cstdio>
#include <cstdlib>
#include <deque> #include <deque>
#include <drawinglayer/geometry/viewinformation2d.hxx> #include <drawinglayer/geometry/viewinformation2d.hxx>
#include <drawinglayer/primitive2d/groupprimitive2d.hxx> #include <drawinglayer/primitive2d/groupprimitive2d.hxx>
...@@ -399,6 +405,7 @@ ...@@ -399,6 +405,7 @@
#include <editeng/brushitem.hxx> #include <editeng/brushitem.hxx>
#include <editeng/bulletitem.hxx> #include <editeng/bulletitem.hxx>
#include <editeng/charreliefitem.hxx> #include <editeng/charreliefitem.hxx>
#include <editeng/cmapitem.hxx>
#include <editeng/colritem.hxx> #include <editeng/colritem.hxx>
#include <editeng/contouritem.hxx> #include <editeng/contouritem.hxx>
#include <editeng/crossedoutitem.hxx> #include <editeng/crossedoutitem.hxx>
...@@ -456,6 +463,7 @@ ...@@ -456,6 +463,7 @@
#include <filter/msfilter/svxmsbas.hxx> #include <filter/msfilter/svxmsbas.hxx>
#include <i18nlangtag/languagetag.hxx> #include <i18nlangtag/languagetag.hxx>
#include <i18nlangtag/mslangid.hxx> #include <i18nlangtag/mslangid.hxx>
#include <i18nutil/unicode.hxx>
#include <iterator> #include <iterator>
#include <limits.h> #include <limits.h>
#include <linguistic/lngprops.hxx> #include <linguistic/lngprops.hxx>
...@@ -543,6 +551,7 @@ ...@@ -543,6 +551,7 @@
#include <stdio.h> #include <stdio.h>
#include <string.h> #include <string.h>
#include <string> #include <string>
#include <svl/IndexedStyleSheets.hxx>
#include <svl/aeitem.hxx> #include <svl/aeitem.hxx>
#include <svl/brdcst.hxx> #include <svl/brdcst.hxx>
#include <svl/cjkoptions.hxx> #include <svl/cjkoptions.hxx>
...@@ -589,11 +598,13 @@ ...@@ -589,11 +598,13 @@
#include <svtools/miscopt.hxx> #include <svtools/miscopt.hxx>
#include <svtools/sfxecode.hxx> #include <svtools/sfxecode.hxx>
#include <svtools/soerr.hxx> #include <svtools/soerr.hxx>
#include <svtools/svlbitm.hxx>
#include <svtools/svmedit.hxx> #include <svtools/svmedit.hxx>
#include <svtools/svtresid.hxx> #include <svtools/svtresid.hxx>
#include <svtools/tabbar.hxx> #include <svtools/tabbar.hxx>
#include <svtools/toolbarmenu.hxx> #include <svtools/toolbarmenu.hxx>
#include <svtools/transfer.hxx> #include <svtools/transfer.hxx>
#include <svtools/treelistentry.hxx>
#include <svtools/unoevent.hxx> #include <svtools/unoevent.hxx>
#include <svtools/unoimap.hxx> #include <svtools/unoimap.hxx>
#include <svtools/valueset.hxx> #include <svtools/valueset.hxx>
...@@ -743,7 +754,6 @@ ...@@ -743,7 +754,6 @@
#include <svx/sxmsuitm.hxx> #include <svx/sxmsuitm.hxx>
#include <svx/tabline.hxx> #include <svx/tabline.hxx>
#include <svx/tbcontrl.hxx> #include <svx/tbcontrl.hxx>
#include <svx/tbxcolor.hxx>
#include <svx/tbxcustomshapes.hxx> #include <svx/tbxcustomshapes.hxx>
#include <svx/unoapi.hxx> #include <svx/unoapi.hxx>
#include <svx/unofill.hxx> #include <svx/unofill.hxx>
...@@ -827,7 +837,6 @@ ...@@ -827,7 +837,6 @@
#include <tools/urlobj.hxx> #include <tools/urlobj.hxx>
#include <tools/wintypes.hxx> #include <tools/wintypes.hxx>
#include <tools/wldcrd.hxx> #include <tools/wldcrd.hxx>
#include <uno/lbnames.h>
#include <unotools/accessiblestatesethelper.hxx> #include <unotools/accessiblestatesethelper.hxx>
#include <unotools/charclass.hxx> #include <unotools/charclass.hxx>
#include <unotools/confignode.hxx> #include <unotools/confignode.hxx>
...@@ -899,7 +908,6 @@ ...@@ -899,7 +908,6 @@
#include <vcl/tabpage.hxx> #include <vcl/tabpage.hxx>
#include <vcl/taskpanelist.hxx> #include <vcl/taskpanelist.hxx>
#include <vcl/toolbox.hxx> #include <vcl/toolbox.hxx>
#include <vcl/unohelp.hxx>
#include <vcl/vclenum.hxx> #include <vcl/vclenum.hxx>
#include <vcl/virdev.hxx> #include <vcl/virdev.hxx>
#include <vcl/waitobj.hxx> #include <vcl/waitobj.hxx>
......
...@@ -18,7 +18,6 @@ ...@@ -18,7 +18,6 @@
#include "com/sun/star/uno/Reference.hxx" #include "com/sun/star/uno/Reference.hxx"
#include "rtl/ref.hxx" #include "rtl/ref.hxx"
#include <algorithm> #include <algorithm>
#include <animations/animationnodehelper.hxx>
#include <avmedia/mediawindow.hxx> #include <avmedia/mediawindow.hxx>
#include <basegfx/matrix/b2dhommatrix.hxx> #include <basegfx/matrix/b2dhommatrix.hxx>
#include <basegfx/matrix/b2dhommatrixtools.hxx> #include <basegfx/matrix/b2dhommatrixtools.hxx>
...@@ -135,6 +134,7 @@ ...@@ -135,6 +134,7 @@
#include <com/sun/star/lang/XMultiServiceFactory.hpp> #include <com/sun/star/lang/XMultiServiceFactory.hpp>
#include <com/sun/star/lang/XServiceInfo.hpp> #include <com/sun/star/lang/XServiceInfo.hpp>
#include <com/sun/star/lang/XServiceName.hpp> #include <com/sun/star/lang/XServiceName.hpp>
#include <com/sun/star/lang/XTypeProvider.hpp>
#include <com/sun/star/loader/CannotActivateFactoryException.hpp> #include <com/sun/star/loader/CannotActivateFactoryException.hpp>
#include <com/sun/star/media/XManager.hpp> #include <com/sun/star/media/XManager.hpp>
#include <com/sun/star/media/XPlayer.hpp> #include <com/sun/star/media/XPlayer.hpp>
...@@ -148,6 +148,7 @@ ...@@ -148,6 +148,7 @@
#include <com/sun/star/presentation/XSlideShow.hpp> #include <com/sun/star/presentation/XSlideShow.hpp>
#include <com/sun/star/presentation/XSlideShowListener.hpp> #include <com/sun/star/presentation/XSlideShowListener.hpp>
#include <com/sun/star/presentation/XSlideShowView.hpp> #include <com/sun/star/presentation/XSlideShowView.hpp>
#include <com/sun/star/registry/XRegistryKey.hpp>
#include <com/sun/star/rendering/IntegerBitmapLayout.hpp> #include <com/sun/star/rendering/IntegerBitmapLayout.hpp>
#include <com/sun/star/rendering/PanoseLetterForm.hpp> #include <com/sun/star/rendering/PanoseLetterForm.hpp>
#include <com/sun/star/rendering/XBitmap.hpp> #include <com/sun/star/rendering/XBitmap.hpp>
...@@ -193,7 +194,6 @@ ...@@ -193,7 +194,6 @@
#include <osl/diagnose.h> #include <osl/diagnose.h>
#include <osl/diagnose.hxx> #include <osl/diagnose.hxx>
#include <queue> #include <queue>
#include <rtl/instance.hxx>
#include <rtl/math.hxx> #include <rtl/math.hxx>
#include <rtl/ref.hxx> #include <rtl/ref.hxx>
#include <rtl/ustrbuf.hxx> #include <rtl/ustrbuf.hxx>
...@@ -217,6 +217,7 @@ ...@@ -217,6 +217,7 @@
#include <vcl/graph.hxx> #include <vcl/graph.hxx>
#include <vcl/metaact.hxx> #include <vcl/metaact.hxx>
#include <vcl/metric.hxx> #include <vcl/metric.hxx>
#include <vcl/settings.hxx>
#include <vcl/svapp.hxx> #include <vcl/svapp.hxx>
#include <vcl/syschild.hxx> #include <vcl/syschild.hxx>
#include <vcl/virdev.hxx> #include <vcl/virdev.hxx>
......
...@@ -69,6 +69,8 @@ ...@@ -69,6 +69,8 @@
#include <comphelper/servicehelper.hxx> #include <comphelper/servicehelper.hxx>
#include <comphelper/storagehelper.hxx> #include <comphelper/storagehelper.hxx>
#include <comphelper/string.hxx> #include <comphelper/string.hxx>
#include <config_options.h>
#include <cppuhelper/supportsservice.hxx>
#include <editeng/editdata.hxx> #include <editeng/editdata.hxx>
#include <editeng/editeng.hxx> #include <editeng/editeng.hxx>
#include <editeng/editobj.hxx> #include <editeng/editobj.hxx>
......
...@@ -31,7 +31,6 @@ ...@@ -31,7 +31,6 @@
#include "com/sun/star/uno/RuntimeException.hpp" #include "com/sun/star/uno/RuntimeException.hpp"
#include "com/sun/star/uno/Sequence.hxx" #include "com/sun/star/uno/Sequence.hxx"
#include "comphelper/processfactory.hxx" #include "comphelper/processfactory.hxx"
#include "cppuhelper/factory.hxx"
#include "editeng/AccessibleEditableTextPara.hxx" #include "editeng/AccessibleEditableTextPara.hxx"
#include "editeng/AccessibleParaManager.hxx" #include "editeng/AccessibleParaManager.hxx"
#include "editeng/editdata.hxx" #include "editeng/editdata.hxx"
...@@ -45,18 +44,13 @@ ...@@ -45,18 +44,13 @@
#include "editeng/unolingu.hxx" #include "editeng/unolingu.hxx"
#include "editeng/unopracc.hxx" #include "editeng/unopracc.hxx"
#include "editeng/xmlcnitm.hxx" #include "editeng/xmlcnitm.hxx"
#include "osl/diagnose.h"
#include "rtl/ustrbuf.hxx" #include "rtl/ustrbuf.hxx"
#include "rtl/ustring.h" #include "rtl/ustring.h"
#include "rtl/ustring.hxx" #include "rtl/ustring.hxx"
#include "sal/config.h" #include "sal/config.h"
#include "sal/types.h"
#include "sfx2/imagemgr.hxx"
#include "sfx2/module.hxx"
#include "sfx2/sidebar/CommandInfoProvider.hxx" #include "sfx2/sidebar/CommandInfoProvider.hxx"
#include "svtools/treelistentry.hxx" #include "svtools/treelistentry.hxx"
#include "svtools/viewdataentry.hxx" #include "svtools/viewdataentry.hxx"
#include "uno/lbnames.h"
#include "vcl/builder.hxx" #include "vcl/builder.hxx"
#include "vcl/svapp.hxx" #include "vcl/svapp.hxx"
#include <algorithm> #include <algorithm>
...@@ -69,8 +63,10 @@ ...@@ -69,8 +63,10 @@
#include <basegfx/tools/zoomtools.hxx> #include <basegfx/tools/zoomtools.hxx>
#include <basic/sbxvar.hxx> #include <basic/sbxvar.hxx>
#include <boost/bind.hpp> #include <boost/bind.hpp>
#include <boost/noncopyable.hpp>
#include <boost/scoped_ptr.hpp> #include <boost/scoped_ptr.hpp>
#include <boost/shared_ptr.hpp> #include <boost/shared_ptr.hpp>
#include <cassert>
#include <climits> #include <climits>
#include <cmath> #include <cmath>
#include <com/sun/star/accessibility/AccessibleEventId.hpp> #include <com/sun/star/accessibility/AccessibleEventId.hpp>
...@@ -78,10 +74,13 @@ ...@@ -78,10 +74,13 @@
#include <com/sun/star/accessibility/AccessibleRelationType.hpp> #include <com/sun/star/accessibility/AccessibleRelationType.hpp>
#include <com/sun/star/accessibility/AccessibleRole.hpp> #include <com/sun/star/accessibility/AccessibleRole.hpp>
#include <com/sun/star/accessibility/AccessibleStateType.hpp> #include <com/sun/star/accessibility/AccessibleStateType.hpp>
#include <com/sun/star/accessibility/AccessibleTextType.hpp>
#include <com/sun/star/accessibility/XAccessible.hpp> #include <com/sun/star/accessibility/XAccessible.hpp>
#include <com/sun/star/accessibility/XAccessibleComponent.hpp> #include <com/sun/star/accessibility/XAccessibleComponent.hpp>
#include <com/sun/star/accessibility/XAccessibleContext.hpp> #include <com/sun/star/accessibility/XAccessibleContext.hpp>
#include <com/sun/star/accessibility/XAccessibleGetAccFlowTo.hpp>
#include <com/sun/star/awt/FocusChangeReason.hpp> #include <com/sun/star/awt/FocusChangeReason.hpp>
#include <com/sun/star/awt/FontDescriptor.hpp>
#include <com/sun/star/awt/Key.hpp> #include <com/sun/star/awt/Key.hpp>
#include <com/sun/star/awt/KeyEvent.hpp> #include <com/sun/star/awt/KeyEvent.hpp>
#include <com/sun/star/awt/KeyModifier.hpp> #include <com/sun/star/awt/KeyModifier.hpp>
...@@ -112,13 +111,14 @@ ...@@ -112,13 +111,14 @@
#include <com/sun/star/drawing/Direction3D.hpp> #include <com/sun/star/drawing/Direction3D.hpp>
#include <com/sun/star/drawing/EnhancedCustomShapeParameterPair.hpp> #include <com/sun/star/drawing/EnhancedCustomShapeParameterPair.hpp>
#include <com/sun/star/drawing/FillStyle.hpp> #include <com/sun/star/drawing/FillStyle.hpp>
#include <com/sun/star/drawing/PolyPolygonBezierCoords.hpp>
#include <com/sun/star/drawing/Position3D.hpp> #include <com/sun/star/drawing/Position3D.hpp>
#include <com/sun/star/drawing/ShadeMode.hpp> #include <com/sun/star/drawing/ShadeMode.hpp>
#include <com/sun/star/drawing/XControlShape.hpp> #include <com/sun/star/drawing/XControlShape.hpp>
#include <com/sun/star/drawing/XCustomShapeEngine.hpp>
#include <com/sun/star/drawing/XShapeDescriptor.hpp> #include <com/sun/star/drawing/XShapeDescriptor.hpp>
#include <com/sun/star/drawing/XShapes.hpp> #include <com/sun/star/drawing/XShapes.hpp>
#include <com/sun/star/form/FormComponentType.hpp> #include <com/sun/star/form/FormComponentType.hpp>
#include <com/sun/star/frame/theAutoRecovery.hpp>
#include <com/sun/star/frame/Desktop.hpp> #include <com/sun/star/frame/Desktop.hpp>
#include <com/sun/star/frame/ModuleManager.hpp> #include <com/sun/star/frame/ModuleManager.hpp>
#include <com/sun/star/frame/XController.hpp> #include <com/sun/star/frame/XController.hpp>
...@@ -127,9 +127,11 @@ ...@@ -127,9 +127,11 @@
#include <com/sun/star/frame/XFramesSupplier.hpp> #include <com/sun/star/frame/XFramesSupplier.hpp>
#include <com/sun/star/frame/XLayoutManager.hpp> #include <com/sun/star/frame/XLayoutManager.hpp>
#include <com/sun/star/frame/XStatusListener.hpp> #include <com/sun/star/frame/XStatusListener.hpp>
#include <com/sun/star/frame/XSynchronousDispatch.hpp>
#include <com/sun/star/frame/status/FontHeight.hpp> #include <com/sun/star/frame/status/FontHeight.hpp>
#include <com/sun/star/frame/status/LeftRightMargin.hpp> #include <com/sun/star/frame/status/LeftRightMargin.hpp>
#include <com/sun/star/frame/status/UpperLowerMargin.hpp> #include <com/sun/star/frame/status/UpperLowerMargin.hpp>
#include <com/sun/star/frame/theAutoRecovery.hpp>
#include <com/sun/star/gallery/GalleryItemType.hpp> #include <com/sun/star/gallery/GalleryItemType.hpp>
#include <com/sun/star/gallery/XGalleryTheme.hpp> #include <com/sun/star/gallery/XGalleryTheme.hpp>
#include <com/sun/star/i18n/BreakIterator.hpp> #include <com/sun/star/i18n/BreakIterator.hpp>
...@@ -152,7 +154,6 @@ ...@@ -152,7 +154,6 @@
#include <com/sun/star/plugin/PluginManager.hpp> #include <com/sun/star/plugin/PluginManager.hpp>
#include <com/sun/star/plugin/XPluginManager.hpp> #include <com/sun/star/plugin/XPluginManager.hpp>
#include <com/sun/star/reflection/ProxyFactory.hpp> #include <com/sun/star/reflection/ProxyFactory.hpp>
#include <com/sun/star/registry/XRegistryKey.hpp>
#include <com/sun/star/smarttags/SmartTagRecognizerMode.hpp> #include <com/sun/star/smarttags/SmartTagRecognizerMode.hpp>
#include <com/sun/star/smarttags/XRangeBasedSmartTagRecognizer.hpp> #include <com/sun/star/smarttags/XRangeBasedSmartTagRecognizer.hpp>
#include <com/sun/star/smarttags/XSmartTagAction.hpp> #include <com/sun/star/smarttags/XSmartTagAction.hpp>
...@@ -194,6 +195,7 @@ ...@@ -194,6 +195,7 @@
#include <com/sun/star/ui/XContextChangeEventMultiplexer.hpp> #include <com/sun/star/ui/XContextChangeEventMultiplexer.hpp>
#include <com/sun/star/ui/XSidebar.hpp> #include <com/sun/star/ui/XSidebar.hpp>
#include <com/sun/star/ui/XUIElement.hpp> #include <com/sun/star/ui/XUIElement.hpp>
#include <com/sun/star/ui/XUIElementFactory.hpp>
#include <com/sun/star/ui/dialogs/ExecutableDialogResults.hpp> #include <com/sun/star/ui/dialogs/ExecutableDialogResults.hpp>
#include <com/sun/star/ui/dialogs/FolderPicker.hpp> #include <com/sun/star/ui/dialogs/FolderPicker.hpp>
#include <com/sun/star/ui/dialogs/TemplateDescription.hpp> #include <com/sun/star/ui/dialogs/TemplateDescription.hpp>
...@@ -201,8 +203,10 @@ ...@@ -201,8 +203,10 @@
#include <com/sun/star/uno/Exception.hpp> #include <com/sun/star/uno/Exception.hpp>
#include <com/sun/star/uno/Reference.h> #include <com/sun/star/uno/Reference.h>
#include <com/sun/star/uno/Reference.hxx> #include <com/sun/star/uno/Reference.hxx>
#include <com/sun/star/uno/RuntimeException.hpp>
#include <com/sun/star/uno/Sequence.h> #include <com/sun/star/uno/Sequence.h>
#include <com/sun/star/uno/Sequence.hxx> #include <com/sun/star/uno/Sequence.hxx>
#include <com/sun/star/uno/XComponentContext.hpp>
#include <com/sun/star/util/SortField.hpp> #include <com/sun/star/util/SortField.hpp>
#include <com/sun/star/util/SortFieldType.hpp> #include <com/sun/star/util/SortFieldType.hpp>
#include <com/sun/star/util/URL.hpp> #include <com/sun/star/util/URL.hpp>
...@@ -218,10 +222,10 @@ ...@@ -218,10 +222,10 @@
#include <comphelper/accessiblewrapper.hxx> #include <comphelper/accessiblewrapper.hxx>
#include <comphelper/namedvaluecollection.hxx> #include <comphelper/namedvaluecollection.hxx>
#include <comphelper/processfactory.hxx> #include <comphelper/processfactory.hxx>
#include <comphelper/property.hxx>
#include <comphelper/propertysetinfo.hxx> #include <comphelper/propertysetinfo.hxx>
#include <comphelper/sequenceashashmap.hxx> #include <comphelper/sequenceashashmap.hxx>
#include <comphelper/servicehelper.hxx> #include <comphelper/servicehelper.hxx>
#include <comphelper/stl_types.hxx>
#include <comphelper/string.hxx> #include <comphelper/string.hxx>
#include <comphelper/types.hxx> #include <comphelper/types.hxx>
#include <comphelper/uno3.hxx> #include <comphelper/uno3.hxx>
...@@ -231,8 +235,10 @@ ...@@ -231,8 +235,10 @@
#include <cppuhelper/compbase6.hxx> #include <cppuhelper/compbase6.hxx>
#include <cppuhelper/implbase1.hxx> #include <cppuhelper/implbase1.hxx>
#include <cppuhelper/implbase2.hxx> #include <cppuhelper/implbase2.hxx>
#include <cppuhelper/implbase3.hxx>
#include <cppuhelper/implbase7.hxx> #include <cppuhelper/implbase7.hxx>
#include <cppuhelper/interfacecontainer.h> #include <cppuhelper/interfacecontainer.h>
#include <cppuhelper/interfacecontainer.hxx>
#include <cppuhelper/supportsservice.hxx> #include <cppuhelper/supportsservice.hxx>
#include <cppuhelper/typeprovider.hxx> #include <cppuhelper/typeprovider.hxx>
#include <cppuhelper/weakref.hxx> #include <cppuhelper/weakref.hxx>
...@@ -283,6 +289,7 @@ ...@@ -283,6 +289,7 @@
#include <framework/imageproducer.hxx> #include <framework/imageproducer.hxx>
#include <framework/sfxhelperfunctions.hxx> #include <framework/sfxhelperfunctions.hxx>
#include <i18nlangtag/mslangid.hxx> #include <i18nlangtag/mslangid.hxx>
#include <i18nutil/unicode.hxx>
#include <limits.h> #include <limits.h>
#include <limits> #include <limits>
#include <list> #include <list>
...@@ -307,6 +314,8 @@ ...@@ -307,6 +314,8 @@
#include <rtl/textenc.h> #include <rtl/textenc.h>
#include <rtl/ustrbuf.hxx> #include <rtl/ustrbuf.hxx>
#include <rtl/ustring.hxx> #include <rtl/ustring.hxx>
#include <rtl/uuid.h>
#include <sal/config.h>
#include <sal/macros.h> #include <sal/macros.h>
#include <sal/types.h> #include <sal/types.h>
#include <set> #include <set>
...@@ -332,7 +341,6 @@ ...@@ -332,7 +341,6 @@
#include <sfx2/sidebar/ControllerFactory.hxx> #include <sfx2/sidebar/ControllerFactory.hxx>
#include <sfx2/sidebar/EnumContext.hxx> #include <sfx2/sidebar/EnumContext.hxx>
#include <sfx2/sidebar/SidebarPanelBase.hxx> #include <sfx2/sidebar/SidebarPanelBase.hxx>
#include <sfx2/sidebar/SidebarToolBox.hxx>
#include <sfx2/sidebar/Theme.hxx> #include <sfx2/sidebar/Theme.hxx>
#include <sfx2/sidebar/Tools.hxx> #include <sfx2/sidebar/Tools.hxx>
#include <sfx2/signaturestate.hxx> #include <sfx2/signaturestate.hxx>
...@@ -392,8 +400,10 @@ ...@@ -392,8 +400,10 @@
#include <svtools/stdmenu.hxx> #include <svtools/stdmenu.hxx>
#include <svtools/svlbitm.hxx> #include <svtools/svlbitm.hxx>
#include <svtools/toolbarmenu.hxx> #include <svtools/toolbarmenu.hxx>
#include <svtools/toolboxcontroller.hxx>
#include <svtools/unitconv.hxx> #include <svtools/unitconv.hxx>
#include <svtools/valueset.hxx> #include <svtools/valueset.hxx>
#include <toolkit/awt/vclxwindow.hxx>
#include <toolkit/helper/convert.hxx> #include <toolkit/helper/convert.hxx>
#include <toolkit/helper/externallock.hxx> #include <toolkit/helper/externallock.hxx>
#include <toolkit/helper/vclunohelper.hxx> #include <toolkit/helper/vclunohelper.hxx>
...@@ -403,6 +413,7 @@ ...@@ -403,6 +413,7 @@
#include <tools/errinf.hxx> #include <tools/errinf.hxx>
#include <tools/gen.hxx> #include <tools/gen.hxx>
#include <tools/helpers.hxx> #include <tools/helpers.hxx>
#include <tools/mapunit.hxx>
#include <tools/poly.hxx> #include <tools/poly.hxx>
#include <tools/rc.hxx> #include <tools/rc.hxx>
#include <tools/rcid.h> #include <tools/rcid.h>
...@@ -416,7 +427,6 @@ ...@@ -416,7 +427,6 @@
#include <unotools/accessiblerelationsethelper.hxx> #include <unotools/accessiblerelationsethelper.hxx>
#include <unotools/accessiblestatesethelper.hxx> #include <unotools/accessiblestatesethelper.hxx>
#include <unotools/charclass.hxx> #include <unotools/charclass.hxx>
#include <unotools/fontoptions.hxx>
#include <unotools/localedatawrapper.hxx> #include <unotools/localedatawrapper.hxx>
#include <unotools/localfilehelper.hxx> #include <unotools/localfilehelper.hxx>
#include <unotools/moduleoptions.hxx> #include <unotools/moduleoptions.hxx>
...@@ -458,6 +468,7 @@ ...@@ -458,6 +468,7 @@
#include <vcl/settings.hxx> #include <vcl/settings.hxx>
#include <vcl/status.hxx> #include <vcl/status.hxx>
#include <vcl/svapp.hxx> #include <vcl/svapp.hxx>
#include <vcl/textdata.hxx>
#include <vcl/timer.hxx> #include <vcl/timer.hxx>
#include <vcl/toolbox.hxx> #include <vcl/toolbox.hxx>
#include <vcl/unohelp.hxx> #include <vcl/unohelp.hxx>
......
...@@ -38,7 +38,6 @@ ...@@ -38,7 +38,6 @@
#include "osl/diagnose.h" #include "osl/diagnose.h"
#include "sal/config.h" #include "sal/config.h"
#include "sal/types.h" #include "sal/types.h"
#include "uno/lbnames.h"
#include "xmloff/DashStyle.hxx" #include "xmloff/DashStyle.hxx"
#include "xmloff/GradientStyle.hxx" #include "xmloff/GradientStyle.hxx"
#include "xmloff/HatchStyle.hxx" #include "xmloff/HatchStyle.hxx"
...@@ -84,6 +83,7 @@ ...@@ -84,6 +83,7 @@
#include <basegfx/vector/b3dvector.hxx> #include <basegfx/vector/b3dvector.hxx>
#include <basic/sbxvar.hxx> #include <basic/sbxvar.hxx>
#include <boost/bind.hpp> #include <boost/bind.hpp>
#include <boost/noncopyable.hpp>
#include <boost/ptr_container/ptr_vector.hpp> #include <boost/ptr_container/ptr_vector.hpp>
#include <boost/scoped_ptr.hpp> #include <boost/scoped_ptr.hpp>
#include <boost/shared_ptr.hpp> #include <boost/shared_ptr.hpp>
...@@ -206,6 +206,7 @@ ...@@ -206,6 +206,7 @@
#include <com/sun/star/graphic/XGraphic.hpp> #include <com/sun/star/graphic/XGraphic.hpp>
#include <com/sun/star/graphic/XGraphicProvider.hpp> #include <com/sun/star/graphic/XGraphicProvider.hpp>
#include <com/sun/star/graphic/XGraphicRenderer.hpp> #include <com/sun/star/graphic/XGraphicRenderer.hpp>
#include <com/sun/star/graphic/XPrimitiveFactory2D.hpp>
#include <com/sun/star/i18n/BreakIterator.hpp> #include <com/sun/star/i18n/BreakIterator.hpp>
#include <com/sun/star/i18n/CharacterIteratorMode.hpp> #include <com/sun/star/i18n/CharacterIteratorMode.hpp>
#include <com/sun/star/i18n/ScriptType.hpp> #include <com/sun/star/i18n/ScriptType.hpp>
...@@ -251,6 +252,7 @@ ...@@ -251,6 +252,7 @@
#include <com/sun/star/task/XInteractionHandler.hpp> #include <com/sun/star/task/XInteractionHandler.hpp>
#include <com/sun/star/task/XStatusIndicator.hpp> #include <com/sun/star/task/XStatusIndicator.hpp>
#include <com/sun/star/text/GraphicCrop.hpp> #include <com/sun/star/text/GraphicCrop.hpp>
#include <com/sun/star/text/RelOrientation.hpp>
#include <com/sun/star/text/WritingMode.hpp> #include <com/sun/star/text/WritingMode.hpp>
#include <com/sun/star/text/textfield/Type.hpp> #include <com/sun/star/text/textfield/Type.hpp>
#include <com/sun/star/ucb/NameClash.hpp> #include <com/sun/star/ucb/NameClash.hpp>
...@@ -263,6 +265,7 @@ ...@@ -263,6 +265,7 @@
#include <com/sun/star/uno/Any.hxx> #include <com/sun/star/uno/Any.hxx>
#include <com/sun/star/uno/Sequence.h> #include <com/sun/star/uno/Sequence.h>
#include <com/sun/star/uno/Sequence.hxx> #include <com/sun/star/uno/Sequence.hxx>
#include <com/sun/star/uno/XComponentContext.hpp>
#include <com/sun/star/uno/XInterface.hpp> #include <com/sun/star/uno/XInterface.hpp>
#include <com/sun/star/util/DateTime.hpp> #include <com/sun/star/util/DateTime.hpp>
#include <com/sun/star/util/MeasureUnit.hpp> #include <com/sun/star/util/MeasureUnit.hpp>
...@@ -289,7 +292,6 @@ ...@@ -289,7 +292,6 @@
#include <comphelper/sequence.hxx> #include <comphelper/sequence.hxx>
#include <comphelper/servicehelper.hxx> #include <comphelper/servicehelper.hxx>
#include <comphelper/serviceinfohelper.hxx> #include <comphelper/serviceinfohelper.hxx>
#include <comphelper/stl_types.hxx>
#include <comphelper/storagehelper.hxx> #include <comphelper/storagehelper.hxx>
#include <comphelper/string.hxx> #include <comphelper/string.hxx>
#include <comphelper/types.hxx> #include <comphelper/types.hxx>
...@@ -304,6 +306,7 @@ ...@@ -304,6 +306,7 @@
#include <cppuhelper/typeprovider.hxx> #include <cppuhelper/typeprovider.hxx>
#include <cppuhelper/weak.hxx> #include <cppuhelper/weak.hxx>
#include <cstdio> #include <cstdio>
#include <cstdlib>
#include <drawinglayer/animation/animationtiming.hxx> #include <drawinglayer/animation/animationtiming.hxx>
#include <drawinglayer/attribute/fillgradientattribute.hxx> #include <drawinglayer/attribute/fillgradientattribute.hxx>
#include <drawinglayer/attribute/fillgraphicattribute.hxx> #include <drawinglayer/attribute/fillgraphicattribute.hxx>
...@@ -346,6 +349,7 @@ ...@@ -346,6 +349,7 @@
#include <drawinglayer/primitive2d/metafileprimitive2d.hxx> #include <drawinglayer/primitive2d/metafileprimitive2d.hxx>
#include <drawinglayer/primitive2d/modifiedcolorprimitive2d.hxx> #include <drawinglayer/primitive2d/modifiedcolorprimitive2d.hxx>
#include <drawinglayer/primitive2d/objectinfoprimitive2d.hxx> #include <drawinglayer/primitive2d/objectinfoprimitive2d.hxx>
#include <drawinglayer/primitive2d/openglprimitive2d.hxx>
#include <drawinglayer/primitive2d/pagepreviewprimitive2d.hxx> #include <drawinglayer/primitive2d/pagepreviewprimitive2d.hxx>
#include <drawinglayer/primitive2d/polygonprimitive2d.hxx> #include <drawinglayer/primitive2d/polygonprimitive2d.hxx>
#include <drawinglayer/primitive2d/polypolygonprimitive2d.hxx> #include <drawinglayer/primitive2d/polypolygonprimitive2d.hxx>
...@@ -388,6 +392,7 @@ ...@@ -388,6 +392,7 @@
#include <editeng/bulletitem.hxx> #include <editeng/bulletitem.hxx>
#include <editeng/charreliefitem.hxx> #include <editeng/charreliefitem.hxx>
#include <editeng/charscaleitem.hxx> #include <editeng/charscaleitem.hxx>
#include <editeng/cmapitem.hxx>
#include <editeng/colritem.hxx> #include <editeng/colritem.hxx>
#include <editeng/contouritem.hxx> #include <editeng/contouritem.hxx>
#include <editeng/crossedoutitem.hxx> #include <editeng/crossedoutitem.hxx>
...@@ -436,12 +441,12 @@ ...@@ -436,12 +441,12 @@
#include <i18nlangtag/lang.h> #include <i18nlangtag/lang.h>
#include <i18nlangtag/languagetag.hxx> #include <i18nlangtag/languagetag.hxx>
#include <i18nlangtag/mslangid.hxx> #include <i18nlangtag/mslangid.hxx>
#include <i18nutil/unicode.hxx>
#include <limits> #include <limits>
#include <linguistic/misc.hxx> #include <linguistic/misc.hxx>
#include <map> #include <map>
#include <math.h> #include <math.h>
#include <memory> #include <memory>
#include <officecfg/Office/Common.hxx>
#include <osl/diagnose.h> #include <osl/diagnose.h>
#include <osl/endian.h> #include <osl/endian.h>
#include <osl/file.hxx> #include <osl/file.hxx>
...@@ -556,6 +561,7 @@ ...@@ -556,6 +561,7 @@
#include <tools/globname.hxx> #include <tools/globname.hxx>
#include <tools/helpers.hxx> #include <tools/helpers.hxx>
#include <tools/line.hxx> #include <tools/line.hxx>
#include <tools/mapunit.hxx>
#include <tools/poly.hxx> #include <tools/poly.hxx>
#include <tools/rcid.h> #include <tools/rcid.h>
#include <tools/resmgr.hxx> #include <tools/resmgr.hxx>
......
...@@ -75,26 +75,26 @@ ...@@ -75,26 +75,26 @@
#include <com/sun/star/lang/XSingleComponentFactory.hpp> #include <com/sun/star/lang/XSingleComponentFactory.hpp>
#include <com/sun/star/lang/XSingleServiceFactory.hpp> #include <com/sun/star/lang/XSingleServiceFactory.hpp>
#include <com/sun/star/script/vba/XVBACompatibility.hpp> #include <com/sun/star/script/vba/XVBACompatibility.hpp>
#include <com/sun/star/text/GraphicCrop.hpp>
#include <com/sun/star/text/TextContentAnchorType.hpp> #include <com/sun/star/text/TextContentAnchorType.hpp>
#include <com/sun/star/text/VertOrientation.hpp> #include <com/sun/star/text/VertOrientation.hpp>
#include <com/sun/star/text/XTextRange.hpp> #include <com/sun/star/text/XTextRange.hpp>
#include <com/sun/star/ucb/SimpleFileAccess.hpp> #include <com/sun/star/ucb/SimpleFileAccess.hpp>
#include <com/sun/star/ucb/XCommandEnvironment.hpp> #include <com/sun/star/ucb/XCommandEnvironment.hpp>
#include <com/sun/star/ui/ItemType.hpp> #include <com/sun/star/ui/ItemType.hpp>
#include <com/sun/star/ui/theModuleUIConfigurationManagerSupplier.hpp>
#include <com/sun/star/ui/XImageManager.hpp> #include <com/sun/star/ui/XImageManager.hpp>
#include <com/sun/star/ui/XUIConfigurationPersistence.hpp> #include <com/sun/star/ui/XUIConfigurationPersistence.hpp>
#include <com/sun/star/ui/theModuleUIConfigurationManagerSupplier.hpp>
#include <com/sun/star/uno/Sequence.h> #include <com/sun/star/uno/Sequence.h>
#include <com/sun/star/util/XCloseable.hpp> #include <com/sun/star/util/XCloseable.hpp>
#include <com/sun/star/xml/dom/XAttr.hpp>
#include <com/sun/star/xml/dom/XDocument.hpp> #include <com/sun/star/xml/dom/XDocument.hpp>
#include <com/sun/star/xml/dom/XNamedNodeMap.hpp>
#include <com/sun/star/xml/dom/XNode.hpp>
#include <com/sun/star/xml/sax/Writer.hpp> #include <com/sun/star/xml/sax/Writer.hpp>
#include <com/sun/star/xml/sax/XSAXSerializable.hpp> #include <com/sun/star/xml/sax/XSAXSerializable.hpp>
#include <comphelper/docpasswordrequest.hxx> #include <comphelper/docpasswordrequest.hxx>
#include <comphelper/embeddedobjectcontainer.hxx>
#include <comphelper/extract.hxx> #include <comphelper/extract.hxx>
#include <comphelper/processfactory.hxx> #include <comphelper/processfactory.hxx>
#include <comphelper/seqstream.hxx>
#include <comphelper/sequenceashashmap.hxx> #include <comphelper/sequenceashashmap.hxx>
#include <comphelper/storagehelper.hxx> #include <comphelper/storagehelper.hxx>
#include <comphelper/string.hxx> #include <comphelper/string.hxx>
...@@ -102,7 +102,6 @@ ...@@ -102,7 +102,6 @@
#include <cppuhelper/implementationentry.hxx> #include <cppuhelper/implementationentry.hxx>
#include <cstdio> #include <cstdio>
#include <cstring> #include <cstring>
#include <filter/msfilter/sprmids.hxx>
#include <editeng/adjustitem.hxx> #include <editeng/adjustitem.hxx>
#include <editeng/autokernitem.hxx> #include <editeng/autokernitem.hxx>
#include <editeng/blinkitem.hxx> #include <editeng/blinkitem.hxx>
...@@ -162,8 +161,8 @@ ...@@ -162,8 +161,8 @@
#include <filter/msfilter/msdffimp.hxx> #include <filter/msfilter/msdffimp.hxx>
#include <filter/msfilter/msoleexp.hxx> #include <filter/msfilter/msoleexp.hxx>
#include <filter/msfilter/rtfutil.hxx> #include <filter/msfilter/rtfutil.hxx>
#include <filter/msfilter/sprmids.hxx>
#include <filter/msfilter/svxmsbas.hxx> #include <filter/msfilter/svxmsbas.hxx>
#include <filter/msfilter/util.hxx>
#include <fstream> #include <fstream>
#include <functional> #include <functional>
#include <i18nlangtag/lang.h> #include <i18nlangtag/lang.h>
...@@ -177,12 +176,14 @@ ...@@ -177,12 +176,14 @@
#include <oox/drawingml/drawingmltypes.hxx> #include <oox/drawingml/drawingmltypes.hxx>
#include <oox/export/chartexport.hxx> #include <oox/export/chartexport.hxx>
#include <oox/export/drawingml.hxx> #include <oox/export/drawingml.hxx>
#include <oox/export/shapes.hxx>
#include <oox/export/utils.hxx> #include <oox/export/utils.hxx>
#include <oox/export/vmlexport.hxx> #include <oox/export/vmlexport.hxx>
#include <oox/mathml/export.hxx> #include <oox/mathml/export.hxx>
#include <oox/ole/olehelper.hxx> #include <oox/ole/olehelper.hxx>
#include <oox/ole/olestorage.hxx> #include <oox/ole/olestorage.hxx>
#include <oox/ole/vbaproject.hxx> #include <oox/ole/vbaproject.hxx>
#include <oox/token/properties.hxx>
#include <oox/token/tokens.hxx> #include <oox/token/tokens.hxx>
#include <osl/diagnose.h> #include <osl/diagnose.h>
#include <osl/endian.h> #include <osl/endian.h>
...@@ -247,6 +248,7 @@ ...@@ -247,6 +248,7 @@
#include <svx/sxctitm.hxx> #include <svx/sxctitm.hxx>
#include <svx/unoapi.hxx> #include <svx/unoapi.hxx>
#include <svx/unoshape.hxx> #include <svx/unoshape.hxx>
#include <svx/xenum.hxx>
#include <svx/xfillit.hxx> #include <svx/xfillit.hxx>
#include <svx/xfillit0.hxx> #include <svx/xfillit0.hxx>
#include <svx/xflclit.hxx> #include <svx/xflclit.hxx>
...@@ -254,6 +256,7 @@ ...@@ -254,6 +256,7 @@
#include <svx/xfltrit.hxx> #include <svx/xfltrit.hxx>
#include <svx/xlineit.hxx> #include <svx/xlineit.hxx>
#include <toolkit/helper/vclunohelper.hxx> #include <toolkit/helper/vclunohelper.hxx>
#include <tools/datetimeutils.hxx>
#include <tools/solar.h> #include <tools/solar.h>
#include <tools/stream.hxx> #include <tools/stream.hxx>
#include <tools/tenccvt.hxx> #include <tools/tenccvt.hxx>
...@@ -280,6 +283,7 @@ ...@@ -280,6 +283,7 @@
#include <vcl/graphicfilter.hxx> #include <vcl/graphicfilter.hxx>
#include <vcl/outdev.hxx> #include <vcl/outdev.hxx>
#include <vcl/salbtype.hxx> #include <vcl/salbtype.hxx>
#include <vcl/settings.hxx>
#include <vcl/svapp.hxx> #include <vcl/svapp.hxx>
#include <vcl/vclenum.hxx> #include <vcl/vclenum.hxx>
#include <vcl/virdev.hxx> #include <vcl/virdev.hxx>
......
This diff is collapsed.
...@@ -100,12 +100,12 @@ ...@@ -100,12 +100,12 @@
#include <com/sun/star/ucb/SimpleFileAccess.hpp> #include <com/sun/star/ucb/SimpleFileAccess.hpp>
#include <com/sun/star/uri/XUriReference.hpp> #include <com/sun/star/uri/XUriReference.hpp>
#include <com/sun/star/uri/XUriReferenceFactory.hpp> #include <com/sun/star/uri/XUriReferenceFactory.hpp>
#include <com/sun/star/util/thePathSettings.hpp>
#include <com/sun/star/util/XCloseable.hpp> #include <com/sun/star/util/XCloseable.hpp>
#include <com/sun/star/util/XModifiable.hpp> #include <com/sun/star/util/XModifiable.hpp>
#include <com/sun/star/util/XRefreshable.hpp> #include <com/sun/star/util/XRefreshable.hpp>
#include <com/sun/star/util/XStringSubstitution.hpp> #include <com/sun/star/util/XStringSubstitution.hpp>
#include <com/sun/star/util/XUpdatable.hpp> #include <com/sun/star/util/XUpdatable.hpp>
#include <com/sun/star/util/thePathSettings.hpp>
#include <com/sun/star/view/XLineCursor.hpp> #include <com/sun/star/view/XLineCursor.hpp>
#include <com/sun/star/view/XSelectionSupplier.hpp> #include <com/sun/star/view/XSelectionSupplier.hpp>
#include <com/sun/star/view/XViewCursor.hpp> #include <com/sun/star/view/XViewCursor.hpp>
...@@ -119,7 +119,6 @@ ...@@ -119,7 +119,6 @@
#include <cppuhelper/implbase3.hxx> #include <cppuhelper/implbase3.hxx>
#include <editeng/acorrcfg.hxx> #include <editeng/acorrcfg.hxx>
#include <i18nlangtag/languagetag.hxx> #include <i18nlangtag/languagetag.hxx>
#include <memory>
#include <ooo/vba/XControlProvider.hpp> #include <ooo/vba/XControlProvider.hpp>
#include <ooo/vba/office/MsoDocProperties.hpp> #include <ooo/vba/office/MsoDocProperties.hpp>
#include <ooo/vba/word/WdBookmarkSortBy.hpp> #include <ooo/vba/word/WdBookmarkSortBy.hpp>
......
...@@ -19,10 +19,10 @@ ...@@ -19,10 +19,10 @@
#include "basegfx/polygon/b2dpolygontools.hxx" #include "basegfx/polygon/b2dpolygontools.hxx"
#include "basegfx/polygon/b2dpolypolygon.hxx" #include "basegfx/polygon/b2dpolypolygon.hxx"
#include "com/sun/star/accessibility/AccessibleRole.hpp" #include "com/sun/star/accessibility/AccessibleRole.hpp"
#include "com/sun/star/accessibility/MSAAService.hpp"
#include "com/sun/star/accessibility/XAccessible.hpp" #include "com/sun/star/accessibility/XAccessible.hpp"
#include "com/sun/star/awt/Size.hpp" #include "com/sun/star/awt/Size.hpp"
#include "com/sun/star/awt/XDisplayConnection.hpp" #include "com/sun/star/awt/XDisplayConnection.hpp"
#include "com/sun/star/awt/XExtendedToolkit.hpp"
#include "com/sun/star/awt/XToolkit.hpp" #include "com/sun/star/awt/XToolkit.hpp"
#include "com/sun/star/awt/XTopWindow.hpp" #include "com/sun/star/awt/XTopWindow.hpp"
#include "com/sun/star/awt/XWindow.hpp" #include "com/sun/star/awt/XWindow.hpp"
...@@ -50,10 +50,6 @@ ...@@ -50,10 +50,6 @@
#include "com/sun/star/i18n/XBreakIterator.hpp" #include "com/sun/star/i18n/XBreakIterator.hpp"
#include "com/sun/star/io/XInputStream.hpp" #include "com/sun/star/io/XInputStream.hpp"
#include "com/sun/star/io/XSeekable.hpp" #include "com/sun/star/io/XSeekable.hpp"
#include "com/sun/star/java/JavaDisabledException.hpp"
#include "com/sun/star/java/JavaNotConfiguredException.hpp"
#include "com/sun/star/java/JavaVMCreationFailureException.hpp"
#include "com/sun/star/java/MissingJavaRuntimeException.hpp"
#include "com/sun/star/lang/DisposedException.hpp" #include "com/sun/star/lang/DisposedException.hpp"
#include "com/sun/star/lang/Locale.hpp" #include "com/sun/star/lang/Locale.hpp"
#include "com/sun/star/lang/XComponent.hpp" #include "com/sun/star/lang/XComponent.hpp"
...@@ -86,6 +82,7 @@ ...@@ -86,6 +82,7 @@
#include "i18nlangtag/languagetag.hxx" #include "i18nlangtag/languagetag.hxx"
#include "i18nlangtag/mslangid.hxx" #include "i18nlangtag/mslangid.hxx"
#include "i18nutil/unicode.hxx" #include "i18nutil/unicode.hxx"
#include "officecfg/Office/Common.hxx"
#include "osl/diagnose.h" #include "osl/diagnose.h"
#include "osl/file.h" #include "osl/file.h"
#include "osl/file.hxx" #include "osl/file.hxx"
...@@ -148,6 +145,7 @@ ...@@ -148,6 +145,7 @@
#include <basegfx/vector/b2isize.hxx> #include <basegfx/vector/b2isize.hxx>
#include <boost/bind.hpp> #include <boost/bind.hpp>
#include <boost/foreach.hpp> #include <boost/foreach.hpp>
#include <boost/make_shared.hpp>
#include <boost/optional.hpp> #include <boost/optional.hpp>
#include <boost/ptr_container/ptr_vector.hpp> #include <boost/ptr_container/ptr_vector.hpp>
#include <boost/scoped_array.hpp> #include <boost/scoped_array.hpp>
...@@ -191,12 +189,12 @@ ...@@ -191,12 +189,12 @@
#include <com/sun/star/datatransfer/dnd/XDragSource.hpp> #include <com/sun/star/datatransfer/dnd/XDragSource.hpp>
#include <com/sun/star/datatransfer/dnd/XDropTarget.hpp> #include <com/sun/star/datatransfer/dnd/XDropTarget.hpp>
#include <com/sun/star/frame/ModuleManager.hpp> #include <com/sun/star/frame/ModuleManager.hpp>
#include <com/sun/star/frame/theUICommandDescription.hpp>
#include <com/sun/star/frame/XController.hpp> #include <com/sun/star/frame/XController.hpp>
#include <com/sun/star/frame/XModel.hpp> #include <com/sun/star/frame/XModel.hpp>
#include <com/sun/star/frame/XModuleManager2.hpp> #include <com/sun/star/frame/XModuleManager2.hpp>
#include <com/sun/star/frame/XSessionManagerClient.hpp> #include <com/sun/star/frame/XSessionManagerClient.hpp>
#include <com/sun/star/frame/XSessionManagerListener2.hpp> #include <com/sun/star/frame/XSessionManagerListener2.hpp>
#include <com/sun/star/frame/theUICommandDescription.hpp>
#include <com/sun/star/geometry/IntegerPoint2D.hpp> #include <com/sun/star/geometry/IntegerPoint2D.hpp>
#include <com/sun/star/geometry/IntegerRectangle2D.hpp> #include <com/sun/star/geometry/IntegerRectangle2D.hpp>
#include <com/sun/star/geometry/IntegerSize2D.hpp> #include <com/sun/star/geometry/IntegerSize2D.hpp>
...@@ -233,6 +231,7 @@ ...@@ -233,6 +231,7 @@
#include <com/sun/star/lang/XServiceInfo.hpp> #include <com/sun/star/lang/XServiceInfo.hpp>
#include <com/sun/star/lang/XTypeProvider.hpp> #include <com/sun/star/lang/XTypeProvider.hpp>
#include <com/sun/star/lang/XUnoTunnel.hpp> #include <com/sun/star/lang/XUnoTunnel.hpp>
#include <com/sun/star/packages/zip/ZipFileAccess.hpp>
#include <com/sun/star/rendering/CanvasFactory.hpp> #include <com/sun/star/rendering/CanvasFactory.hpp>
#include <com/sun/star/rendering/ColorComponentTag.hpp> #include <com/sun/star/rendering/ColorComponentTag.hpp>
#include <com/sun/star/rendering/ColorSpaceType.hpp> #include <com/sun/star/rendering/ColorSpaceType.hpp>
...@@ -247,13 +246,14 @@ ...@@ -247,13 +246,14 @@
#include <com/sun/star/rendering/XIntegerReadOnlyBitmap.hpp> #include <com/sun/star/rendering/XIntegerReadOnlyBitmap.hpp>
#include <com/sun/star/rendering/XPolyPolygon2D.hpp> #include <com/sun/star/rendering/XPolyPolygon2D.hpp>
#include <com/sun/star/svg/XSVGWriter.hpp> #include <com/sun/star/svg/XSVGWriter.hpp>
#include <com/sun/star/task/XStatusIndicator.hpp>
#include <com/sun/star/ucb/CommandAbortedException.hpp> #include <com/sun/star/ucb/CommandAbortedException.hpp>
#include <com/sun/star/ui/ImageType.hpp> #include <com/sun/star/ui/ImageType.hpp>
#include <com/sun/star/ui/theModuleUIConfigurationManagerSupplier.hpp>
#include <com/sun/star/ui/XImageManager.hpp> #include <com/sun/star/ui/XImageManager.hpp>
#include <com/sun/star/ui/XModuleUIConfigurationManagerSupplier.hpp> #include <com/sun/star/ui/XModuleUIConfigurationManagerSupplier.hpp>
#include <com/sun/star/ui/XUIConfigurationManager.hpp> #include <com/sun/star/ui/XUIConfigurationManager.hpp>
#include <com/sun/star/ui/XUIConfigurationManagerSupplier.hpp> #include <com/sun/star/ui/XUIConfigurationManagerSupplier.hpp>
#include <com/sun/star/ui/theModuleUIConfigurationManagerSupplier.hpp>
#include <com/sun/star/uno/Any.h> #include <com/sun/star/uno/Any.h>
#include <com/sun/star/uno/Any.hxx> #include <com/sun/star/uno/Any.hxx>
#include <com/sun/star/uno/Exception.hpp> #include <com/sun/star/uno/Exception.hpp>
...@@ -264,12 +264,12 @@ ...@@ -264,12 +264,12 @@
#include <com/sun/star/uno/XInterface.hpp> #include <com/sun/star/uno/XInterface.hpp>
#include <com/sun/star/uno/XWeak.hpp> #include <com/sun/star/uno/XWeak.hpp>
#include <com/sun/star/util/Endianness.hpp> #include <com/sun/star/util/Endianness.hpp>
#include <com/sun/star/util/thePathSettings.hpp>
#include <com/sun/star/util/SearchFlags.hpp> #include <com/sun/star/util/SearchFlags.hpp>
#include <com/sun/star/util/SearchOptions.hpp> #include <com/sun/star/util/SearchOptions.hpp>
#include <com/sun/star/util/URL.hpp> #include <com/sun/star/util/URL.hpp>
#include <com/sun/star/util/URLTransformer.hpp> #include <com/sun/star/util/URLTransformer.hpp>
#include <com/sun/star/util/XChangesBatch.hpp> #include <com/sun/star/util/XChangesBatch.hpp>
#include <com/sun/star/util/thePathSettings.hpp>
#include <com/sun/star/xml/sax/Writer.hpp> #include <com/sun/star/xml/sax/Writer.hpp>
#include <com/sun/star/xml/sax/XDocumentHandler.hpp> #include <com/sun/star/xml/sax/XDocumentHandler.hpp>
#include <comphelper/namedvaluecollection.hxx> #include <comphelper/namedvaluecollection.hxx>
...@@ -277,16 +277,21 @@ ...@@ -277,16 +277,21 @@
#include <comphelper/scopeguard.hxx> #include <comphelper/scopeguard.hxx>
#include <comphelper/seqstream.hxx> #include <comphelper/seqstream.hxx>
#include <comphelper/string.hxx> #include <comphelper/string.hxx>
#include <config_eot.h>
#include <config_features.h> #include <config_features.h>
#include <config_folders.h> #include <config_folders.h>
#include <config_graphite.h> #include <config_graphite.h>
#include <config_libraries.h>
#include <cppuhelper/basemutex.hxx>
#include <cppuhelper/compbase1.hxx> #include <cppuhelper/compbase1.hxx>
#include <cppuhelper/factory.hxx> #include <cppuhelper/factory.hxx>
#include <cppuhelper/implbase1.hxx> #include <cppuhelper/implbase1.hxx>
#include <cppuhelper/implbase3.hxx> #include <cppuhelper/implbase3.hxx>
#include <cppuhelper/supportsservice.hxx> #include <cppuhelper/supportsservice.hxx>
#include <cppuhelper/typeprovider.hxx>
#include <cppuhelper/weak.hxx> #include <cppuhelper/weak.hxx>
#include <cstdio> #include <cstdio>
#include <cstdlib>
#include <cstring> #include <cstring>
#include <ctype.h> #include <ctype.h>
#include <fcntl.h> #include <fcntl.h>
...@@ -320,6 +325,7 @@ ...@@ -320,6 +325,7 @@
#include <rsc/rsc-vcl-shared-types.hxx> #include <rsc/rsc-vcl-shared-types.hxx>
#include <rtl/alloc.h> #include <rtl/alloc.h>
#include <rtl/bootstrap.hxx> #include <rtl/bootstrap.hxx>
#include <rtl/character.hxx>
#include <rtl/crc.h> #include <rtl/crc.h>
#include <rtl/digest.h> #include <rtl/digest.h>
#include <rtl/instance.hxx> #include <rtl/instance.hxx>
...@@ -336,11 +342,14 @@ ...@@ -336,11 +342,14 @@
#include <sal/config.h> #include <sal/config.h>
#include <sal/log.hxx> #include <sal/log.hxx>
#include <sal/macros.h> #include <sal/macros.h>
#include <sal/types.h>
#include <set> #include <set>
#include <setjmp.h>
#include <sot/exchange.hxx> #include <sot/exchange.hxx>
#include <sot/factory.hxx> #include <sot/factory.hxx>
#include <sot/formats.hxx> #include <sot/formats.hxx>
#include <sot/object.hxx> #include <sot/object.hxx>
#include <stdexcept>
#include <stdio.h> #include <stdio.h>
#include <stdlib.h> #include <stdlib.h>
#include <string.h> #include <string.h>
...@@ -355,6 +364,7 @@ ...@@ -355,6 +364,7 @@
#include <tools/config.hxx> #include <tools/config.hxx>
#include <tools/debug.hxx> #include <tools/debug.hxx>
#include <tools/diagnose_ex.h> #include <tools/diagnose_ex.h>
#include <tools/fontenum.hxx>
#include <tools/gen.hxx> #include <tools/gen.hxx>
#include <tools/helpers.hxx> #include <tools/helpers.hxx>
#include <tools/line.hxx> #include <tools/line.hxx>
...@@ -385,7 +395,6 @@ ...@@ -385,7 +395,6 @@
#include <unotools/charclass.hxx> #include <unotools/charclass.hxx>
#include <unotools/configmgr.hxx> #include <unotools/configmgr.hxx>
#include <unotools/confignode.hxx> #include <unotools/confignode.hxx>
#include <unotools/fontcfg.hxx>
#include <unotools/fontcvt.hxx> #include <unotools/fontcvt.hxx>
#include <unotools/fontdefs.hxx> #include <unotools/fontdefs.hxx>
#include <unotools/localedatawrapper.hxx> #include <unotools/localedatawrapper.hxx>
......
...@@ -18,7 +18,9 @@ ...@@ -18,7 +18,9 @@
#include <algorithm> #include <algorithm>
#include <boost/optional.hpp> #include <boost/optional.hpp>
#include <boost/shared_ptr.hpp> #include <boost/shared_ptr.hpp>
#include <boost/tuple/tuple.hpp>
#include <boost/unordered_map.hpp> #include <boost/unordered_map.hpp>
#include <com/sun/star/awt/FontPitch.hpp>
#include <com/sun/star/awt/FontRelief.hpp> #include <com/sun/star/awt/FontRelief.hpp>
#include <com/sun/star/awt/FontSlant.hpp> #include <com/sun/star/awt/FontSlant.hpp>
#include <com/sun/star/awt/FontStrikeout.hpp> #include <com/sun/star/awt/FontStrikeout.hpp>
...@@ -104,6 +106,7 @@ ...@@ -104,6 +106,7 @@
#include <com/sun/star/table/XCellRange.hpp> #include <com/sun/star/table/XCellRange.hpp>
#include <com/sun/star/task/XStatusIndicator.hpp> #include <com/sun/star/task/XStatusIndicator.hpp>
#include <com/sun/star/text/ChapterFormat.hpp> #include <com/sun/star/text/ChapterFormat.hpp>
#include <com/sun/star/text/ControlCharacter.hpp>
#include <com/sun/star/text/FilenameDisplayFormat.hpp> #include <com/sun/star/text/FilenameDisplayFormat.hpp>
#include <com/sun/star/text/FootnoteNumbering.hpp> #include <com/sun/star/text/FootnoteNumbering.hpp>
#include <com/sun/star/text/GraphicCrop.hpp> #include <com/sun/star/text/GraphicCrop.hpp>
...@@ -148,11 +151,13 @@ ...@@ -148,11 +151,13 @@
#include <com/sun/star/util/XRefreshable.hpp> #include <com/sun/star/util/XRefreshable.hpp>
#include <com/sun/star/view/XFormLayerAccess.hpp> #include <com/sun/star/view/XFormLayerAccess.hpp>
#include <com/sun/star/xml/dom/DocumentBuilder.hpp> #include <com/sun/star/xml/dom/DocumentBuilder.hpp>
#include <com/sun/star/xml/sax/FastShapeContextHandler.hpp>
#include <com/sun/star/xml/sax/Parser.hpp> #include <com/sun/star/xml/sax/Parser.hpp>
#include <com/sun/star/xml/sax/SAXException.hpp> #include <com/sun/star/xml/sax/SAXException.hpp>
#include <com/sun/star/xml/sax/XParser.hpp> #include <com/sun/star/xml/sax/XParser.hpp>
#include <comphelper/classids.hxx> #include <comphelper/classids.hxx>
#include <comphelper/embeddedobjectcontainer.hxx> #include <comphelper/embeddedobjectcontainer.hxx>
#include <comphelper/sequenceashashmap.hxx>
#include <comphelper/servicehelper.hxx> #include <comphelper/servicehelper.hxx>
#include <comphelper/storagehelper.hxx> #include <comphelper/storagehelper.hxx>
#include <comphelper/string.hxx> #include <comphelper/string.hxx>
...@@ -161,6 +166,7 @@ ...@@ -161,6 +166,7 @@
#include <cppuhelper/implementationentry.hxx> #include <cppuhelper/implementationentry.hxx>
#include <cppuhelper/supportsservice.hxx> #include <cppuhelper/supportsservice.hxx>
#include <editeng/borderline.hxx> #include <editeng/borderline.hxx>
#include <editeng/unoprnms.hxx>
#include <filter/msfilter/escherex.hxx> #include <filter/msfilter/escherex.hxx>
#include <filter/msfilter/util.hxx> #include <filter/msfilter/util.hxx>
#include <fstream> #include <fstream>
...@@ -168,12 +174,12 @@ ...@@ -168,12 +174,12 @@
#include <i18nlangtag/languagetag.hxx> #include <i18nlangtag/languagetag.hxx>
#include <i18nutil/paper.hxx> #include <i18nutil/paper.hxx>
#include <iostream> #include <iostream>
#include <iterator>
#include <libxml/xmlstring.h> #include <libxml/xmlstring.h>
#include <map> #include <map>
#include <math.h> #include <math.h>
#include <officecfg/Office/Common.hxx> #include <officecfg/Office/Common.hxx>
#include <oox/core/filterdetect.hxx> #include <oox/core/filterdetect.hxx>
#include <oox/drawingml/drawingmltypes.hxx>
#include <oox/drawingml/shapepropertymap.hxx> #include <oox/drawingml/shapepropertymap.hxx>
#include <oox/helper/graphichelper.hxx> #include <oox/helper/graphichelper.hxx>
#include <oox/helper/modelobjecthelper.hxx> #include <oox/helper/modelobjecthelper.hxx>
...@@ -192,11 +198,12 @@ ...@@ -192,11 +198,12 @@
#include <osl/module.hxx> #include <osl/module.hxx>
#include <osl/mutex.hxx> #include <osl/mutex.hxx>
#include <rtl/instance.hxx> #include <rtl/instance.hxx>
#include <rtl/math.hxx>
#include <rtl/strbuf.hxx> #include <rtl/strbuf.hxx>
#include <rtl/string.hxx>
#include <rtl/tencinfo.h> #include <rtl/tencinfo.h>
#include <rtl/ustrbuf.hxx> #include <rtl/ustrbuf.hxx>
#include <rtl/ustring.hxx> #include <rtl/ustring.hxx>
#include <sal/config.h>
#include <sal/log.hxx> #include <sal/log.hxx>
#include <sal/macros.h> #include <sal/macros.h>
#include <set> #include <set>
...@@ -210,9 +217,12 @@ ...@@ -210,9 +217,12 @@
#include <svtools/grfmgr.hxx> #include <svtools/grfmgr.hxx>
#include <svx/svdtrans.hxx> #include <svx/svdtrans.hxx>
#include <tools/color.hxx> #include <tools/color.hxx>
#include <tools/datetimeutils.hxx>
#include <tools/globname.hxx> #include <tools/globname.hxx>
#include <tools/mapunit.hxx>
#include <tools/resmgr.hxx> #include <tools/resmgr.hxx>
#include <tools/stream.hxx> #include <tools/stream.hxx>
#include <unotools/datetime.hxx>
#include <unotools/fontdefs.hxx> #include <unotools/fontdefs.hxx>
#include <unotools/localfilehelper.hxx> #include <unotools/localfilehelper.hxx>
#include <unotools/mediadescriptor.hxx> #include <unotools/mediadescriptor.hxx>
...@@ -221,6 +231,7 @@ ...@@ -221,6 +231,7 @@
#include <vcl/embeddedfontshelper.hxx> #include <vcl/embeddedfontshelper.hxx>
#include <vcl/graph.hxx> #include <vcl/graph.hxx>
#include <vcl/outdev.hxx> #include <vcl/outdev.hxx>
#include <vcl/settings.hxx>
#include <vcl/svapp.hxx> #include <vcl/svapp.hxx>
#include <vcl/wmf.hxx> #include <vcl/wmf.hxx>
#include <vector> #include <vector>
......
...@@ -14,18 +14,11 @@ ...@@ -14,18 +14,11 @@
also fixes all possible problems, so it's usually better to use it). also fixes all possible problems, so it's usually better to use it).
*/ */
#include <com/sun/star/beans/XPropertySet.hpp>
#include <com/sun/star/beans/XPropertySetInfo.hpp>
#include <com/sun/star/text/XLineNumberingProperties.hpp>
#include <comphelper/processfactory.hxx>
#include <cppuhelper/exc_hlp.hxx>
#include <sal/config.h>
#include <svl/urihelper.hxx>
#include <tools/debug.hxx>
#include <algorithm> #include <algorithm>
#include <basegfx/matrix/b2dhommatrix.hxx> #include <basegfx/matrix/b2dhommatrix.hxx>
#include <basegfx/matrix/b2dhommatrixtools.hxx> #include <basegfx/matrix/b2dhommatrixtools.hxx>
#include <basegfx/matrix/b3dhommatrix.hxx> #include <basegfx/matrix/b3dhommatrix.hxx>
#include <basegfx/numeric/ftools.hxx>
#include <basegfx/point/b2dpoint.hxx> #include <basegfx/point/b2dpoint.hxx>
#include <basegfx/polygon/b2dpolygon.hxx> #include <basegfx/polygon/b2dpolygon.hxx>
#include <basegfx/polygon/b2dpolygontools.hxx> #include <basegfx/polygon/b2dpolygontools.hxx>
...@@ -40,6 +33,7 @@ ...@@ -40,6 +33,7 @@
#include <basegfx/vector/b3dvector.hxx> #include <basegfx/vector/b3dvector.hxx>
#include <boost/bind.hpp> #include <boost/bind.hpp>
#include <boost/iterator_adaptors.hpp> #include <boost/iterator_adaptors.hpp>
#include <boost/noncopyable.hpp>
#include <boost/ptr_container/ptr_set.hpp> #include <boost/ptr_container/ptr_set.hpp>
#include <boost/ptr_container/ptr_vector.hpp> #include <boost/ptr_container/ptr_vector.hpp>
#include <boost/scoped_array.hpp> #include <boost/scoped_array.hpp>
...@@ -157,6 +151,7 @@ ...@@ -157,6 +151,7 @@
#include <com/sun/star/chart2/data/XDataSink.hpp> #include <com/sun/star/chart2/data/XDataSink.hpp>
#include <com/sun/star/chart2/data/XDataSource.hpp> #include <com/sun/star/chart2/data/XDataSource.hpp>
#include <com/sun/star/chart2/data/XDatabaseDataProvider.hpp> #include <com/sun/star/chart2/data/XDatabaseDataProvider.hpp>
#include <com/sun/star/chart2/data/XLabeledDataSequence2.hpp>
#include <com/sun/star/chart2/data/XNumericalDataSequence.hpp> #include <com/sun/star/chart2/data/XNumericalDataSequence.hpp>
#include <com/sun/star/chart2/data/XRangeXMLConversion.hpp> #include <com/sun/star/chart2/data/XRangeXMLConversion.hpp>
#include <com/sun/star/chart2/data/XTextualDataSequence.hpp> #include <com/sun/star/chart2/data/XTextualDataSequence.hpp>
...@@ -297,7 +292,6 @@ ...@@ -297,7 +292,6 @@
#include <com/sun/star/lang/XServiceInfo.hpp> #include <com/sun/star/lang/XServiceInfo.hpp>
#include <com/sun/star/lang/XServiceName.hpp> #include <com/sun/star/lang/XServiceName.hpp>
#include <com/sun/star/lang/XSingleServiceFactory.hpp> #include <com/sun/star/lang/XSingleServiceFactory.hpp>
#include <com/sun/star/lang/XTypeProvider.hpp>
#include <com/sun/star/linguistic2/XSupportedLocales.hpp> #include <com/sun/star/linguistic2/XSupportedLocales.hpp>
#include <com/sun/star/media/ZoomLevel.hpp> #include <com/sun/star/media/ZoomLevel.hpp>
#include <com/sun/star/office/XAnnotationAccess.hpp> #include <com/sun/star/office/XAnnotationAccess.hpp>
...@@ -346,6 +340,7 @@ ...@@ -346,6 +340,7 @@
#include <com/sun/star/style/XStyle.hpp> #include <com/sun/star/style/XStyle.hpp>
#include <com/sun/star/style/XStyleFamiliesSupplier.hpp> #include <com/sun/star/style/XStyleFamiliesSupplier.hpp>
#include <com/sun/star/table/BorderLine2.hpp> #include <com/sun/star/table/BorderLine2.hpp>
#include <com/sun/star/table/BorderLineStyle.hpp>
#include <com/sun/star/table/CellContentType.hpp> #include <com/sun/star/table/CellContentType.hpp>
#include <com/sun/star/table/ShadowFormat.hpp> #include <com/sun/star/table/ShadowFormat.hpp>
#include <com/sun/star/table/XCellRange.hpp> #include <com/sun/star/table/XCellRange.hpp>
...@@ -399,6 +394,7 @@ ...@@ -399,6 +394,7 @@
#include <com/sun/star/text/XFootnote.hpp> #include <com/sun/star/text/XFootnote.hpp>
#include <com/sun/star/text/XFootnotesSupplier.hpp> #include <com/sun/star/text/XFootnotesSupplier.hpp>
#include <com/sun/star/text/XFormField.hpp> #include <com/sun/star/text/XFormField.hpp>
#include <com/sun/star/text/XLineNumberingProperties.hpp>
#include <com/sun/star/text/XNumberingRulesSupplier.hpp> #include <com/sun/star/text/XNumberingRulesSupplier.hpp>
#include <com/sun/star/text/XNumberingTypeInfo.hpp> #include <com/sun/star/text/XNumberingTypeInfo.hpp>
#include <com/sun/star/text/XRelativeTextContentInsert.hpp> #include <com/sun/star/text/XRelativeTextContentInsert.hpp>
...@@ -500,6 +496,7 @@ ...@@ -500,6 +496,7 @@
#include <comphelper/string.hxx> #include <comphelper/string.hxx>
#include <comphelper/types.hxx> #include <comphelper/types.hxx>
#include <comphelper/xmltools.hxx> #include <comphelper/xmltools.hxx>
#include <cppuhelper/exc_hlp.hxx>
#include <cppuhelper/factory.hxx> #include <cppuhelper/factory.hxx>
#include <cppuhelper/implbase1.hxx> #include <cppuhelper/implbase1.hxx>
#include <cppuhelper/implbase3.hxx> #include <cppuhelper/implbase3.hxx>
...@@ -512,7 +509,6 @@ ...@@ -512,7 +509,6 @@
#include <limits.h> #include <limits.h>
#include <list> #include <list>
#include <map> #include <map>
#include <memory>
#include <numeric> #include <numeric>
#include <o3tl/sorted_vector.hxx> #include <o3tl/sorted_vector.hxx>
#include <officecfg/Office/Common.hxx> #include <officecfg/Office/Common.hxx>
...@@ -526,17 +522,20 @@ ...@@ -526,17 +522,20 @@
#include <rtl/ustrbuf.hxx> #include <rtl/ustrbuf.hxx>
#include <rtl/ustring.h> #include <rtl/ustring.h>
#include <rtl/ustring.hxx> #include <rtl/ustring.hxx>
#include <sal/config.h>
#include <sal/log.hxx> #include <sal/log.hxx>
#include <sal/macros.h> #include <sal/macros.h>
#include <sal/types.h> #include <sal/types.h>
#include <sax/tools/converter.hxx> #include <sax/tools/converter.hxx>
#include <set> #include <set>
#include <stack>
#include <stdio.h> #include <stdio.h>
#include <stdlib.h> #include <stdlib.h>
#include <string.h> #include <string.h>
#include <svl/itemset.hxx> #include <svl/itemset.hxx>
#include <svl/nfsymbol.hxx> #include <svl/nfsymbol.hxx>
#include <svl/numuno.hxx> #include <svl/numuno.hxx>
#include <svl/urihelper.hxx>
#include <svl/zforlist.hxx> #include <svl/zforlist.hxx>
#include <svl/zformat.hxx> #include <svl/zformat.hxx>
#include <tools/color.hxx> #include <tools/color.hxx>
...@@ -551,9 +550,7 @@ ...@@ -551,9 +550,7 @@
#include <tools/helpers.hxx> #include <tools/helpers.hxx>
#include <tools/time.hxx> #include <tools/time.hxx>
#include <tools/urlobj.hxx> #include <tools/urlobj.hxx>
#include <tools/wintypes.hxx>
#include <typeinfo> #include <typeinfo>
#include <uno/lbnames.h>
#include <unotools/bootstrap.hxx> #include <unotools/bootstrap.hxx>
#include <unotools/calendarwrapper.hxx> #include <unotools/calendarwrapper.hxx>
#include <unotools/charclass.hxx> #include <unotools/charclass.hxx>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment