diff options
85 files changed, 181 insertions, 288 deletions
diff --git a/accessibility/inc/extended/accessiblelistboxentry.hxx b/accessibility/inc/extended/accessiblelistboxentry.hxx index 1d565046d59a..279978a34ccf 100644 --- a/accessibility/inc/extended/accessiblelistboxentry.hxx +++ b/accessibility/inc/extended/accessiblelistboxentry.hxx @@ -33,7 +33,7 @@ #include <cppuhelper/compbase9.hxx> #include <cppuhelper/basemutex.hxx> #include <comphelper/accessibletexthelper.hxx> -#include <vcl/treelistentry.hxx> +#include <vcl/toolkit/treelistentry.hxx> #include <tools/gen.hxx> // forward --------------------------------------------------------------- diff --git a/accessibility/inc/pch/precompiled_acc.hxx b/accessibility/inc/pch/precompiled_acc.hxx index a79bfdc5884f..fd794b6b9894 100644 --- a/accessibility/inc/pch/precompiled_acc.hxx +++ b/accessibility/inc/pch/precompiled_acc.hxx @@ -13,7 +13,7 @@ manual changes will be rewritten by the next run of update_pch.sh (which presumably also fixes all possible problems, so it's usually better to use it). - Generated on 2020-07-09 17:06:12 using: + Generated on 2020-08-12 11:04:15 using: ./bin/update_pch accessibility acc --cutoff=4 --exclude:system --include:module --include:local If after updating build fails, use the following command to locate conflicting headers: @@ -50,7 +50,6 @@ #include <typeinfo> #include <utility> #include <vector> -#include <boost/property_tree/json_parser.hpp> #endif // PCH_LEVEL >= 1 #if PCH_LEVEL >= 2 #include <osl/diagnose.h> @@ -66,7 +65,6 @@ #include <rtl/instance.hxx> #include <rtl/math.h> #include <rtl/ref.hxx> -#include <rtl/strbuf.h> #include <rtl/strbuf.hxx> #include <rtl/string.h> #include <rtl/string.hxx> @@ -88,18 +86,12 @@ #include <sal/typesizes.h> #include <vcl/AccessibleBrowseBoxObjType.hxx> #include <vcl/EnumContext.hxx> -#include <vcl/GestureEvent.hxx> -#include <vcl/GraphicExternalLink.hxx> -#include <vcl/IContext.hxx> #include <vcl/NotebookBarAddonsMerger.hxx> #include <vcl/NotebookbarContextControl.hxx> #include <vcl/Scanline.hxx> -#include <vcl/accel.hxx> #include <vcl/accessibletable.hxx> #include <vcl/accessibletableprovider.hxx> #include <vcl/alpha.hxx> -#include <vcl/animate/Animation.hxx> -#include <vcl/animate/AnimationBitmap.hxx> #include <vcl/bitmap.hxx> #include <vcl/bitmapex.hxx> #include <vcl/builder.hxx> @@ -115,8 +107,6 @@ #include <vcl/floatwin.hxx> #include <vcl/fntstyle.hxx> #include <vcl/font.hxx> -#include <vcl/gfxlink.hxx> -#include <vcl/graph.hxx> #include <vcl/idle.hxx> #include <vcl/image.hxx> #include <vcl/keycod.hxx> @@ -129,7 +119,6 @@ #include <vcl/outdevstate.hxx> #include <vcl/quickselectionengine.hxx> #include <vcl/region.hxx> -#include <vcl/salctype.hxx> #include <vcl/salgtype.hxx> #include <vcl/salnativewidgets.hxx> #include <vcl/scopedbitmapaccess.hxx> @@ -141,16 +130,15 @@ #include <vcl/timer.hxx> #include <vcl/toolbox.hxx> #include <vcl/toolkit/lstbox.hxx> +#include <vcl/toolkit/treelist.hxx> +#include <vcl/toolkit/treelistbox.hxx> +#include <vcl/toolkit/treelistentries.hxx> #include <vcl/transfer.hxx> -#include <vcl/treelist.hxx> -#include <vcl/treelistbox.hxx> -#include <vcl/treelistentries.hxx> #include <vcl/unohelp2.hxx> #include <vcl/vclenum.hxx> #include <vcl/vclevent.hxx> #include <vcl/vclptr.hxx> #include <vcl/vclreferencebase.hxx> -#include <vcl/vectorgraphicdata.hxx> #include <vcl/virdev.hxx> #include <vcl/wall.hxx> #include <vcl/window.hxx> @@ -170,7 +158,6 @@ #include <basegfx/tuple/b2ituple.hxx> #include <basegfx/tuple/b3dtuple.hxx> #include <basegfx/utils/common.hxx> -#include <basegfx/vector/b2dsize.hxx> #include <basegfx/vector/b2dvector.hxx> #include <basegfx/vector/b2enums.hxx> #include <basegfx/vector/b2ivector.hxx> @@ -317,7 +304,6 @@ #include <toolkit/awt/vclxwindows.hxx> #include <toolkit/dllapi.h> #include <toolkit/helper/convert.hxx> -#include <tools/UnitConversion.hxx> #include <tools/color.hxx> #include <tools/contnr.hxx> #include <tools/fldunit.hxx> @@ -330,7 +316,6 @@ #include <tools/poly.hxx> #include <tools/ref.hxx> #include <tools/solar.h> -#include <tools/stream.hxx> #include <tools/toolsdllapi.h> #include <tools/wintypes.hxx> #include <typelib/typeclass.h> diff --git a/accessibility/source/extended/accessiblelistbox.cxx b/accessibility/source/extended/accessiblelistbox.cxx index 1e1946fe4224..94050529fce4 100644 --- a/accessibility/source/extended/accessiblelistbox.cxx +++ b/accessibility/source/extended/accessiblelistbox.cxx @@ -19,8 +19,8 @@ #include <extended/accessiblelistbox.hxx> #include <extended/accessiblelistboxentry.hxx> -#include <vcl/treelistbox.hxx> -#include <vcl/treelistentry.hxx> +#include <vcl/toolkit/treelistbox.hxx> +#include <vcl/toolkit/treelistentry.hxx> #include <com/sun/star/accessibility/AccessibleEventId.hpp> #include <com/sun/star/accessibility/AccessibleRole.hpp> #include <com/sun/star/accessibility/AccessibleStateType.hpp> diff --git a/accessibility/source/extended/accessiblelistboxentry.cxx b/accessibility/source/extended/accessiblelistboxentry.cxx index 40729de1bcb8..77f9cfc34341 100644 --- a/accessibility/source/extended/accessiblelistboxentry.cxx +++ b/accessibility/source/extended/accessiblelistboxentry.cxx @@ -19,7 +19,7 @@ #include <extended/accessiblelistboxentry.hxx> #include <extended/accessiblelistbox.hxx> -#include <vcl/treelistbox.hxx> +#include <vcl/toolkit/treelistbox.hxx> #include <svtools/stringtransfer.hxx> #include <vcl/toolkit/svlbitm.hxx> #include <com/sun/star/awt/Rectangle.hpp> diff --git a/basctl/inc/pch/precompiled_basctl.hxx b/basctl/inc/pch/precompiled_basctl.hxx index 1e98ab6c9d2f..ebdbe314890c 100644 --- a/basctl/inc/pch/precompiled_basctl.hxx +++ b/basctl/inc/pch/precompiled_basctl.hxx @@ -13,7 +13,7 @@ manual changes will be rewritten by the next run of update_pch.sh (which presumably also fixes all possible problems, so it's usually better to use it). - Generated on 2020-07-09 17:06:13 using: + Generated on 2020-08-12 11:04:16 using: ./bin/update_pch basctl basctl --cutoff=3 --exclude:system --include:module --exclude:local If after updating build fails, use the following command to locate conflicting headers: @@ -57,7 +57,6 @@ #include <utility> #include <vector> #include <boost/functional/hash.hpp> -#include <boost/property_tree/json_parser.hpp> #include <boost/property_tree/ptree_fwd.hpp> #endif // PCH_LEVEL >= 1 #if PCH_LEVEL >= 2 @@ -75,8 +74,6 @@ #include <rtl/instance.hxx> #include <rtl/math.h> #include <rtl/ref.hxx> -#include <rtl/strbuf.h> -#include <rtl/strbuf.hxx> #include <rtl/string.h> #include <rtl/string.hxx> #include <rtl/stringconcat.hxx> @@ -132,12 +129,12 @@ #include <vcl/mapmod.hxx> #include <vcl/menu.hxx> #include <vcl/metaactiontypes.hxx> +#include <vcl/metric.hxx> #include <vcl/outdev.hxx> #include <vcl/outdevmap.hxx> #include <vcl/outdevstate.hxx> #include <vcl/prntypes.hxx> #include <vcl/region.hxx> -#include <vcl/salctype.hxx> #include <vcl/salgtype.hxx> #include <vcl/salnativewidgets.hxx> #include <vcl/scopedbitmapaccess.hxx> @@ -265,6 +262,7 @@ #include <com/sun/star/security/DocumentSignatureInformation.hpp> #include <com/sun/star/style/NumberingType.hpp> #include <com/sun/star/style/XStyle.hpp> +#include <com/sun/star/table/BorderLineStyle.hpp> #include <com/sun/star/task/XStatusIndicatorSupplier.hpp> #include <com/sun/star/text/textfield/Type.hpp> #include <com/sun/star/ui/XContextMenuInterception.hpp> @@ -295,7 +293,6 @@ #include <com/sun/star/util/SearchFlags.hpp> #include <com/sun/star/util/SearchOptions2.hpp> #include <com/sun/star/util/Time.hpp> -#include <com/sun/star/util/XAccounting.hpp> #include <com/sun/star/util/XUpdatable.hpp> #include <com/sun/star/view/PrintableState.hpp> #include <comphelper/accessiblecomponenthelper.hxx> @@ -318,7 +315,6 @@ #include <cppu/cppudllapi.h> #include <cppu/unotype.hxx> #include <cppuhelper/basemutex.hxx> -#include <cppuhelper/compbase.hxx> #include <cppuhelper/compbase2.hxx> #include <cppuhelper/compbase_ex.hxx> #include <cppuhelper/cppuhelperdllapi.h> @@ -340,7 +336,7 @@ #include <drawinglayer/primitive2d/CommonTypes.hxx> #include <drawinglayer/primitive2d/Primitive2DContainer.hxx> #include <drawinglayer/primitive2d/Primitive2DVisitor.hxx> -#include <drawinglayer/primitive2d/baseprimitive2d.hxx> +#include <editeng/borderline.hxx> #include <editeng/editdata.hxx> #include <editeng/editengdllapi.h> #include <editeng/editstat.hxx> @@ -404,6 +400,7 @@ #include <svl/undo.hxx> #include <svl/visitem.hxx> #include <svl/whiter.hxx> +#include <svtools/borderline.hxx> #include <svtools/colorcfg.hxx> #include <svtools/optionsdrawinglayer.hxx> #include <svtools/statusbarcontroller.hxx> @@ -459,7 +456,6 @@ #include <svx/xtable.hxx> #include <toolkit/dllapi.h> #include <toolkit/helper/vclunohelper.hxx> -#include <tools/UnitConversion.hxx> #include <tools/color.hxx> #include <tools/date.hxx> #include <tools/datetime.hxx> @@ -477,7 +473,6 @@ #include <tools/poly.hxx> #include <tools/ref.hxx> #include <tools/solar.h> -#include <tools/stream.hxx> #include <tools/time.hxx> #include <tools/toolsdllapi.h> #include <tools/urlobj.hxx> diff --git a/chart2/inc/pch/precompiled_chartcontroller.hxx b/chart2/inc/pch/precompiled_chartcontroller.hxx index 3881a45197fc..547e897a2b8a 100644 --- a/chart2/inc/pch/precompiled_chartcontroller.hxx +++ b/chart2/inc/pch/precompiled_chartcontroller.hxx @@ -13,7 +13,7 @@ manual changes will be rewritten by the next run of update_pch.sh (which presumably also fixes all possible problems, so it's usually better to use it). - Generated on 2020-07-09 17:06:15 using: + Generated on 2020-08-12 11:04:21 using: ./bin/update_pch chart2 chartcontroller --cutoff=6 --exclude:system --include:module --include:local If after updating build fails, use the following command to locate conflicting headers: @@ -252,7 +252,6 @@ #include <com/sun/star/util/Date.hpp> #include <com/sun/star/util/DateTime.hpp> #include <com/sun/star/util/Time.hpp> -#include <com/sun/star/util/XAccounting.hpp> #include <com/sun/star/util/XModifyBroadcaster.hpp> #include <com/sun/star/util/XUpdatable.hpp> #include <com/sun/star/view/XSelectionSupplier.hpp> @@ -288,7 +287,6 @@ #include <drawinglayer/primitive2d/CommonTypes.hxx> #include <drawinglayer/primitive2d/Primitive2DContainer.hxx> #include <drawinglayer/primitive2d/Primitive2DVisitor.hxx> -#include <drawinglayer/primitive2d/baseprimitive2d.hxx> #include <editeng/editdata.hxx> #include <editeng/editengdllapi.h> #include <editeng/editobj.hxx> @@ -389,7 +387,6 @@ #include <svx/xpoly.hxx> #include <svx/xtable.hxx> #include <toolkit/helper/vclunohelper.hxx> -#include <tools/UnitConversion.hxx> #include <tools/color.hxx> #include <tools/date.hxx> #include <tools/datetime.hxx> diff --git a/chart2/inc/pch/precompiled_chartcore.hxx b/chart2/inc/pch/precompiled_chartcore.hxx index 3e88be05c216..194a3678e2e7 100644 --- a/chart2/inc/pch/precompiled_chartcore.hxx +++ b/chart2/inc/pch/precompiled_chartcore.hxx @@ -13,7 +13,7 @@ manual changes will be rewritten by the next run of update_pch.sh (which presumably also fixes all possible problems, so it's usually better to use it). - Generated on 2020-07-09 17:06:16 using: + Generated on 2020-08-12 11:04:23 using: ./bin/update_pch chart2 chartcore --cutoff=3 --exclude:system --exclude:module --include:local If after updating build fails, use the following command to locate conflicting headers: @@ -127,6 +127,7 @@ #include <com/sun/star/drawing/DoubleSequence.hpp> #include <com/sun/star/drawing/FillStyle.hpp> #include <com/sun/star/drawing/HomogenMatrix.hpp> +#include <com/sun/star/drawing/LineCap.hpp> #include <com/sun/star/drawing/LineJoint.hpp> #include <com/sun/star/drawing/LineStyle.hpp> #include <com/sun/star/drawing/PolyPolygonShape3D.hpp> diff --git a/comphelper/inc/pch/precompiled_comphelper.hxx b/comphelper/inc/pch/precompiled_comphelper.hxx index aff3397332e4..282a499575cc 100644 --- a/comphelper/inc/pch/precompiled_comphelper.hxx +++ b/comphelper/inc/pch/precompiled_comphelper.hxx @@ -13,7 +13,7 @@ manual changes will be rewritten by the next run of update_pch.sh (which presumably also fixes all possible problems, so it's usually better to use it). - Generated on 2020-07-09 17:06:16 using: + Generated on 2020-08-12 11:04:23 using: ./bin/update_pch comphelper comphelper --cutoff=4 --exclude:system --include:module --include:local If after updating build fails, use the following command to locate conflicting headers: @@ -76,7 +76,6 @@ #include <rtl/stringutils.hxx> #include <rtl/textcvt.h> #include <rtl/textenc.h> -#include <rtl/unload.h> #include <rtl/ustrbuf.hxx> #include <rtl/ustring.h> #include <rtl/ustring.hxx> @@ -192,7 +191,6 @@ #include <salhelper/salhelperdllapi.h> #include <salhelper/simplereferenceobject.hxx> #include <salhelper/thread.hxx> -#include <tools/UnitConversion.hxx> #include <tools/color.hxx> #include <tools/gen.hxx> #include <tools/link.hxx> diff --git a/connectivity/inc/pch/precompiled_ado.hxx b/connectivity/inc/pch/precompiled_ado.hxx index 5bcaf702766b..e1002e6f5ad7 100644 --- a/connectivity/inc/pch/precompiled_ado.hxx +++ b/connectivity/inc/pch/precompiled_ado.hxx @@ -13,7 +13,7 @@ manual changes will be rewritten by the next run of update_pch.sh (which presumably also fixes all possible problems, so it's usually better to use it). - Generated on 2020-07-09 17:06:16 using: + Generated on 2020-08-12 11:14:39 using: ./bin/update_pch connectivity ado --cutoff=2 --exclude:system --exclude:module --exclude:local If after updating build fails, use the following command to locate conflicting headers: @@ -40,7 +40,6 @@ #include <osl/thread.h> #include <osl/time.h> #include <rtl/alloc.h> -#include <rtl/unload.h> #include <rtl/ustrbuf.hxx> #include <rtl/ustring.hxx> #include <sal/config.h> @@ -76,7 +75,6 @@ #include <com/sun/star/sdbc/XWarningsSupplier.hpp> #include <com/sun/star/sdbcx/KeyType.hpp> #include <com/sun/star/sdbcx/PrivilegeObject.hpp> -#include <com/sun/star/uno/Reference.h> #include <com/sun/star/uno/Sequence.hxx> #include <com/sun/star/util/Date.hpp> #include <com/sun/star/util/XCancellable.hpp> @@ -88,7 +86,6 @@ #include <comphelper/types.hxx> #include <cppuhelper/basemutex.hxx> #include <cppuhelper/compbase.hxx> -#include <cppuhelper/cppuhelperdllapi.h> #include <cppuhelper/implbase.hxx> #include <cppuhelper/queryinterface.hxx> #include <cppuhelper/supportsservice.hxx> diff --git a/connectivity/inc/pch/precompiled_calc.hxx b/connectivity/inc/pch/precompiled_calc.hxx index 2c36c7a89818..4ca7fa2ec671 100644 --- a/connectivity/inc/pch/precompiled_calc.hxx +++ b/connectivity/inc/pch/precompiled_calc.hxx @@ -13,7 +13,7 @@ manual changes will be rewritten by the next run of update_pch.sh (which presumably also fixes all possible problems, so it's usually better to use it). - Generated on 2020-01-22 15:57:33 using: + Generated on 2020-08-12 11:04:25 using: ./bin/update_pch connectivity calc --cutoff=2 --exclude:system --exclude:module --exclude:local If after updating build fails, use the following command to locate conflicting headers: @@ -35,7 +35,6 @@ #include <rtl/stringconcat.hxx> #include <rtl/stringutils.hxx> #include <rtl/textenc.h> -#include <rtl/unload.h> #include <rtl/ustrbuf.h> #include <rtl/ustrbuf.hxx> #include <rtl/ustring.hxx> diff --git a/connectivity/inc/pch/precompiled_dbase.hxx b/connectivity/inc/pch/precompiled_dbase.hxx index 2d07d4e4ea4f..1b1914b168ea 100644 --- a/connectivity/inc/pch/precompiled_dbase.hxx +++ b/connectivity/inc/pch/precompiled_dbase.hxx @@ -13,7 +13,7 @@ manual changes will be rewritten by the next run of update_pch.sh (which presumably also fixes all possible problems, so it's usually better to use it). - Generated on 2020-07-09 17:06:17 using: + Generated on 2020-08-12 11:04:26 using: ./bin/update_pch connectivity dbase --cutoff=2 --exclude:system --include:module --include:local If after updating build fails, use the following command to locate conflicting headers: @@ -68,7 +68,6 @@ #include <rtl/stringutils.hxx> #include <rtl/textcvt.h> #include <rtl/textenc.h> -#include <rtl/unload.h> #include <rtl/ustrbuf.h> #include <rtl/ustrbuf.hxx> #include <rtl/ustring.h> diff --git a/connectivity/inc/pch/precompiled_dbpool2.hxx b/connectivity/inc/pch/precompiled_dbpool2.hxx index b78f7d5a8f68..90b6a4be8a7f 100644 --- a/connectivity/inc/pch/precompiled_dbpool2.hxx +++ b/connectivity/inc/pch/precompiled_dbpool2.hxx @@ -13,7 +13,7 @@ manual changes will be rewritten by the next run of update_pch.sh (which presumably also fixes all possible problems, so it's usually better to use it). - Generated on 2020-01-22 15:57:34 using: + Generated on 2020-08-12 11:04:26 using: ./bin/update_pch connectivity dbpool2 --cutoff=5 --exclude:system --include:module --exclude:local If after updating build fails, use the following command to locate conflicting headers: @@ -50,7 +50,6 @@ #include <rtl/stringutils.hxx> #include <rtl/textcvt.h> #include <rtl/textenc.h> -#include <rtl/unload.h> #include <rtl/ustrbuf.h> #include <rtl/ustrbuf.hxx> #include <rtl/ustring.h> diff --git a/connectivity/inc/pch/precompiled_dbtools.hxx b/connectivity/inc/pch/precompiled_dbtools.hxx index 9111bdba1c1c..8eddcad7e521 100644 --- a/connectivity/inc/pch/precompiled_dbtools.hxx +++ b/connectivity/inc/pch/precompiled_dbtools.hxx @@ -13,7 +13,7 @@ manual changes will be rewritten by the next run of update_pch.sh (which presumably also fixes all possible problems, so it's usually better to use it). - Generated on 2020-07-09 17:06:17 using: + Generated on 2020-08-12 11:04:27 using: ./bin/update_pch connectivity dbtools --cutoff=2 --exclude:system --exclude:module --include:local If after updating build fails, use the following command to locate conflicting headers: @@ -43,6 +43,7 @@ #include <osl/mutex.hxx> #include <osl/thread.h> #include <rtl/character.hxx> +#include <rtl/digest.h> #include <rtl/locale.h> #include <rtl/math.hxx> #include <rtl/process.h> diff --git a/connectivity/inc/pch/precompiled_firebird_sdbc.hxx b/connectivity/inc/pch/precompiled_firebird_sdbc.hxx index deb68a2c2d93..d856c573467e 100644 --- a/connectivity/inc/pch/precompiled_firebird_sdbc.hxx +++ b/connectivity/inc/pch/precompiled_firebird_sdbc.hxx @@ -13,7 +13,7 @@ manual changes will be rewritten by the next run of update_pch.sh (which presumably also fixes all possible problems, so it's usually better to use it). - Generated on 2020-01-22 15:57:35 using: + Generated on 2020-08-12 11:04:28 using: ./bin/update_pch connectivity firebird_sdbc --cutoff=2 --exclude:system --exclude:module --exclude:local If after updating build fails, use the following command to locate conflicting headers: @@ -24,7 +24,6 @@ #include <cassert> #include <cstddef> #include <memory> -#include <stddef.h> #include <string_view> #include <vector> #endif // PCH_LEVEL >= 1 @@ -39,14 +38,11 @@ #include <rtl/alloc.h> #include <rtl/bootstrap.hxx> #include <rtl/strbuf.hxx> -#include <rtl/unload.h> #include <rtl/ustrbuf.hxx> #include <rtl/ustring.hxx> #include <sal/config.h> #include <sal/log.hxx> -#include <sal/macros.h> #include <sal/types.h> -#include <sal/typesizes.h> #endif // PCH_LEVEL >= 2 #if PCH_LEVEL >= 3 #include <com/sun/star/embed/ElementModes.hpp> @@ -60,12 +56,9 @@ #include <com/sun/star/sdbc/TransactionIsolation.hpp> #include <com/sun/star/sdbc/XRow.hpp> #include <com/sun/star/sdbcx/XColumnsSupplier.hpp> -#include <com/sun/star/uno/Reference.h> #include <com/sun/star/uno/Reference.hxx> #include <comphelper/comphelperdllapi.h> -#include <comphelper/processfactory.hxx> #include <comphelper/sequence.hxx> -#include <cppuhelper/cppuhelperdllapi.h> #include <cppuhelper/exc_hlp.hxx> #include <cppuhelper/supportsservice.hxx> #include <resource/sharedresources.hxx> diff --git a/connectivity/inc/pch/precompiled_flat.hxx b/connectivity/inc/pch/precompiled_flat.hxx index d6aea9b6d421..9a52bb2a57d9 100644 --- a/connectivity/inc/pch/precompiled_flat.hxx +++ b/connectivity/inc/pch/precompiled_flat.hxx @@ -13,7 +13,7 @@ manual changes will be rewritten by the next run of update_pch.sh (which presumably also fixes all possible problems, so it's usually better to use it). - Generated on 2020-04-21 11:13:54 using: + Generated on 2020-08-12 11:04:29 using: ./bin/update_pch connectivity flat --cutoff=2 --exclude:system --include:module --include:local If after updating build fails, use the following command to locate conflicting headers: @@ -50,7 +50,6 @@ #include <osl/interlck.h> #include <osl/mutex.h> #include <osl/mutex.hxx> -#include <osl/time.h> #include <rtl/alloc.h> #include <rtl/instance.hxx> #include <rtl/locale.h> @@ -65,7 +64,6 @@ #include <rtl/stringutils.hxx> #include <rtl/textcvt.h> #include <rtl/textenc.h> -#include <rtl/unload.h> #include <rtl/ustrbuf.h> #include <rtl/ustrbuf.hxx> #include <rtl/ustring.h> diff --git a/connectivity/inc/pch/precompiled_mysql_jdbc.hxx b/connectivity/inc/pch/precompiled_mysql_jdbc.hxx index fed482c16be2..436c66338622 100644 --- a/connectivity/inc/pch/precompiled_mysql_jdbc.hxx +++ b/connectivity/inc/pch/precompiled_mysql_jdbc.hxx @@ -13,7 +13,7 @@ manual changes will be rewritten by the next run of update_pch.sh (which presumably also fixes all possible problems, so it's usually better to use it). - Generated on 2020-01-22 15:57:36 using: + Generated on 2020-08-12 11:04:29 using: ./bin/update_pch connectivity mysql_jdbc --cutoff=1 --exclude:system --include:module --include:local If after updating build fails, use the following command to locate conflicting headers: @@ -25,18 +25,15 @@ #if PCH_LEVEL >= 2 #endif // PCH_LEVEL >= 2 #if PCH_LEVEL >= 3 -#include <com/sun/star/lang/XSingleServiceFactory.hpp> #include <com/sun/star/sdbc/DriverManager.hpp> #include <com/sun/star/sdbc/XResultSet.hpp> #include <com/sun/star/sdbc/XRow.hpp> #include <com/sun/star/sdbcx/PrivilegeObject.hpp> #include <com/sun/star/uno/XComponentContext.hpp> #include <comphelper/namedvaluecollection.hxx> -#include <comphelper/processfactory.hxx> #include <comphelper/property.hxx> #include <comphelper/servicehelper.hxx> #include <comphelper/types.hxx> -#include <cppuhelper/factory.hxx> #include <cppuhelper/supportsservice.hxx> #include <cppuhelper/typeprovider.hxx> #include <mysql/YCatalog.hxx> diff --git a/connectivity/inc/pch/precompiled_odbc.hxx b/connectivity/inc/pch/precompiled_odbc.hxx index 668470fd36db..b74b069a12f3 100644 --- a/connectivity/inc/pch/precompiled_odbc.hxx +++ b/connectivity/inc/pch/precompiled_odbc.hxx @@ -13,7 +13,7 @@ manual changes will be rewritten by the next run of update_pch.sh (which presumably also fixes all possible problems, so it's usually better to use it). - Generated on 2020-02-01 10:57:29 using: + Generated on 2020-08-12 11:04:29 using: ./bin/update_pch connectivity odbc --cutoff=2 --exclude:system --exclude:module --include:local If after updating build fails, use the following command to locate conflicting headers: @@ -31,7 +31,6 @@ #include <rtl/strbuf.hxx> #include <rtl/tencinfo.h> #include <rtl/textenc.h> -#include <rtl/unload.h> #include <rtl/ustrbuf.hxx> #include <rtl/ustring.hxx> #include <sal/config.h> diff --git a/cppcanvas/inc/pch/precompiled_cppcanvas.hxx b/cppcanvas/inc/pch/precompiled_cppcanvas.hxx index 3291bb8fd09e..1efa0f90c396 100644 --- a/cppcanvas/inc/pch/precompiled_cppcanvas.hxx +++ b/cppcanvas/inc/pch/precompiled_cppcanvas.hxx @@ -13,7 +13,7 @@ manual changes will be rewritten by the next run of update_pch.sh (which presumably also fixes all possible problems, so it's usually better to use it). - Generated on 2020-07-09 17:06:19 using: + Generated on 2020-08-12 11:14:42 using: ./bin/update_pch cppcanvas cppcanvas --cutoff=11 --exclude:system --include:module --include:local If after updating build fails, use the following command to locate conflicting headers: @@ -61,7 +61,6 @@ #include <rtl/stringutils.hxx> #include <rtl/textcvt.h> #include <rtl/textenc.h> -#include <rtl/ustrbuf.h> #include <rtl/ustring.h> #include <rtl/ustring.hxx> #include <sal/config.h> @@ -117,7 +116,6 @@ #include <o3tl/typed_flags_set.hxx> #include <o3tl/underlyingenumvalue.hxx> #include <salhelper/simplereferenceobject.hxx> -#include <tools/UnitConversion.hxx> #include <tools/color.hxx> #include <tools/gen.hxx> #include <tools/mapunit.hxx> diff --git a/cppuhelper/inc/pch/precompiled_cppuhelper.hxx b/cppuhelper/inc/pch/precompiled_cppuhelper.hxx index f67cd3d73294..4e0ba23d556a 100644 --- a/cppuhelper/inc/pch/precompiled_cppuhelper.hxx +++ b/cppuhelper/inc/pch/precompiled_cppuhelper.hxx @@ -13,7 +13,7 @@ manual changes will be rewritten by the next run of update_pch.sh (which presumably also fixes all possible problems, so it's usually better to use it). - Generated on 2020-07-09 17:06:19 using: + Generated on 2020-08-12 11:04:30 using: ./bin/update_pch cppuhelper cppuhelper --cutoff=3 --exclude:system --exclude:module --exclude:local If after updating build fails, use the following command to locate conflicting headers: @@ -48,6 +48,7 @@ #include <rtl/malformeduriexception.hxx> #include <rtl/random.h> #include <rtl/ref.hxx> +#include <rtl/textcvt.h> #include <rtl/unload.h> #include <rtl/uri.h> #include <rtl/uri.hxx> diff --git a/cui/inc/pch/precompiled_cui.hxx b/cui/inc/pch/precompiled_cui.hxx index 1c3974a245ba..d7772d02eb51 100644 --- a/cui/inc/pch/precompiled_cui.hxx +++ b/cui/inc/pch/precompiled_cui.hxx @@ -13,7 +13,7 @@ manual changes will be rewritten by the next run of update_pch.sh (which presumably also fixes all possible problems, so it's usually better to use it). - Generated on 2020-07-09 17:06:20 using: + Generated on 2020-08-12 11:04:33 using: ./bin/update_pch cui cui --cutoff=8 --exclude:system --include:module --exclude:local If after updating build fails, use the following command to locate conflicting headers: @@ -84,7 +84,6 @@ #include <rtl/stringutils.hxx> #include <rtl/textcvt.h> #include <rtl/textenc.h> -#include <rtl/ustrbuf.h> #include <rtl/ustrbuf.hxx> #include <rtl/ustring.h> #include <rtl/ustring.hxx> @@ -123,6 +122,7 @@ #include <vcl/graph.hxx> #include <vcl/idle.hxx> #include <vcl/image.hxx> +#include <vcl/imapobj.hxx> #include <vcl/keycod.hxx> #include <vcl/keycodes.hxx> #include <vcl/mapmod.hxx> @@ -133,6 +133,7 @@ #include <vcl/outdevmap.hxx> #include <vcl/outdevstate.hxx> #include <vcl/region.hxx> +#include <vcl/salctype.hxx> #include <vcl/salnativewidgets.hxx> #include <vcl/scopedbitmapaccess.hxx> #include <vcl/settings.hxx> @@ -204,10 +205,8 @@ #include <com/sun/star/i18n/TransliterationModules.hpp> #include <com/sun/star/i18n/TransliterationModulesExtra.hpp> #include <com/sun/star/i18n/WordType.hpp> -#include <com/sun/star/lang/DisposedException.hpp> #include <com/sun/star/lang/EventObject.hpp> #include <com/sun/star/lang/Locale.hpp> -#include <com/sun/star/lang/XComponent.hpp> #include <com/sun/star/lang/XMultiServiceFactory.hpp> #include <com/sun/star/lang/XServiceInfo.hpp> #include <com/sun/star/lang/XTypeProvider.hpp> @@ -241,30 +240,23 @@ #include <com/sun/star/util/SearchAlgorithms.hpp> #include <com/sun/star/util/SearchOptions2.hpp> #include <com/sun/star/util/Time.hpp> -#include <com/sun/star/util/XAccounting.hpp> #include <comphelper/comphelperdllapi.h> #include <comphelper/processfactory.hxx> #include <comphelper/string.hxx> #include <comphelper/weak.hxx> #include <cppu/cppudllapi.h> #include <cppu/unotype.hxx> -#include <cppuhelper/basemutex.hxx> -#include <cppuhelper/compbase.hxx> -#include <cppuhelper/compbase_ex.hxx> #include <cppuhelper/cppuhelperdllapi.h> #include <cppuhelper/implbase.hxx> #include <cppuhelper/implbase_ex.hxx> #include <cppuhelper/implbase_ex_post.hxx> #include <cppuhelper/implbase_ex_pre.hxx> -#include <cppuhelper/interfacecontainer.h> #include <cppuhelper/weak.hxx> -#include <cppuhelper/weakagg.hxx> #include <cppuhelper/weakref.hxx> #include <drawinglayer/drawinglayerdllapi.h> #include <drawinglayer/primitive2d/CommonTypes.hxx> #include <drawinglayer/primitive2d/Primitive2DContainer.hxx> #include <drawinglayer/primitive2d/Primitive2DVisitor.hxx> -#include <drawinglayer/primitive2d/baseprimitive2d.hxx> #include <editeng/editdata.hxx> #include <editeng/editengdllapi.h> #include <editeng/editstat.hxx> @@ -371,7 +363,6 @@ #include <svx/xit.hxx> #include <svx/xpoly.hxx> #include <svx/xtable.hxx> -#include <tools/UnitConversion.hxx> #include <tools/color.hxx> #include <tools/date.hxx> #include <tools/datetime.hxx> diff --git a/dbaccess/inc/pch/precompiled_dba.hxx b/dbaccess/inc/pch/precompiled_dba.hxx index a09675bc8cdf..a21e987c78a7 100644 --- a/dbaccess/inc/pch/precompiled_dba.hxx +++ b/dbaccess/inc/pch/precompiled_dba.hxx @@ -13,7 +13,7 @@ manual changes will be rewritten by the next run of update_pch.sh (which presumably also fixes all possible problems, so it's usually better to use it). - Generated on 2020-08-07 11:34:54 using: + Generated on 2020-08-12 11:14:45 using: ./bin/update_pch dbaccess dba --cutoff=6 --exclude:system --include:module --include:local If after updating build fails, use the following command to locate conflicting headers: @@ -68,6 +68,7 @@ #include <rtl/math.h> #include <rtl/math.hxx> #include <rtl/ref.hxx> +#include <rtl/strbuf.h> #include <rtl/string.h> #include <rtl/string.hxx> #include <rtl/stringconcat.hxx> diff --git a/dbaccess/inc/pch/precompiled_dbu.hxx b/dbaccess/inc/pch/precompiled_dbu.hxx index 41a2c2b08bcc..ae23ef89b38c 100644 --- a/dbaccess/inc/pch/precompiled_dbu.hxx +++ b/dbaccess/inc/pch/precompiled_dbu.hxx @@ -13,7 +13,7 @@ manual changes will be rewritten by the next run of update_pch.sh (which presumably also fixes all possible problems, so it's usually better to use it). - Generated on 2020-08-07 11:35:01 using: + Generated on 2020-08-12 11:04:38 using: ./bin/update_pch dbaccess dbu --cutoff=12 --exclude:system --exclude:module --exclude:local If after updating build fails, use the following command to locate conflicting headers: @@ -68,6 +68,7 @@ #include <sal/log.hxx> #include <sal/types.h> #include <vcl/IDialogRenderable.hxx> +#include <vcl/InterimItemWindow.hxx> #include <vcl/bitmap.hxx> #include <vcl/bitmapex.hxx> #include <vcl/cairo.hxx> @@ -77,8 +78,6 @@ #include <vcl/event.hxx> #include <vcl/font.hxx> #include <vcl/idle.hxx> -#include <vcl/image.hxx> -#include <vcl/keycod.hxx> #include <vcl/keycodes.hxx> #include <vcl/mapmod.hxx> #include <vcl/metaactiontypes.hxx> diff --git a/desktop/inc/pch/precompiled_deployment.hxx b/desktop/inc/pch/precompiled_deployment.hxx index b01353b33da6..7569bb9c15cf 100644 --- a/desktop/inc/pch/precompiled_deployment.hxx +++ b/desktop/inc/pch/precompiled_deployment.hxx @@ -13,7 +13,7 @@ manual changes will be rewritten by the next run of update_pch.sh (which presumably also fixes all possible problems, so it's usually better to use it). - Generated on 2020-04-21 11:14:33 using: + Generated on 2020-08-12 11:04:39 using: ./bin/update_pch desktop deployment --cutoff=3 --exclude:system --exclude:module --exclude:local If after updating build fails, use the following command to locate conflicting headers: @@ -50,6 +50,7 @@ #include <com/sun/star/io/XInputStream.hpp> #include <com/sun/star/lang/IllegalArgumentException.hpp> #include <com/sun/star/lang/WrappedTargetRuntimeException.hpp> +#include <com/sun/star/lang/XServiceInfo.hpp> #include <com/sun/star/sdbc/XResultSet.hpp> #include <com/sun/star/sdbc/XRow.hpp> #include <com/sun/star/task/XInteractionApprove.hpp> @@ -68,11 +69,11 @@ #include <com/sun/star/util/XUpdatable.hpp> #include <comphelper/comphelperdllapi.h> #include <comphelper/sequence.hxx> -#include <comphelper/servicedecl.hxx> #include <cppu/cppudllapi.h> #include <cppuhelper/compbase.hxx> #include <cppuhelper/exc_hlp.hxx> #include <cppuhelper/implbase.hxx> +#include <cppuhelper/supportsservice.hxx> #include <svl/inettype.hxx> #include <tools/diagnose_ex.h> #include <ucbhelper/content.hxx> diff --git a/desktop/inc/pch/precompiled_deploymentgui.hxx b/desktop/inc/pch/precompiled_deploymentgui.hxx index 6ec6ce346ebb..701e42e96eb5 100644 --- a/desktop/inc/pch/precompiled_deploymentgui.hxx +++ b/desktop/inc/pch/precompiled_deploymentgui.hxx @@ -13,7 +13,7 @@ manual changes will be rewritten by the next run of update_pch.sh (which presumably also fixes all possible problems, so it's usually better to use it). - Generated on 2020-04-21 11:14:30 using: + Generated on 2020-08-12 11:04:39 using: ./bin/update_pch desktop deploymentgui --cutoff=3 --exclude:system --exclude:module --exclude:local If after updating build fails, use the following command to locate conflicting headers: @@ -85,6 +85,7 @@ #include <cppu/unotype.hxx> #include <cppuhelper/exc_hlp.hxx> #include <cppuhelper/implbase.hxx> +#include <cppuhelper/supportsservice.hxx> #include <o3tl/typed_flags_set.hxx> #include <salhelper/thread.hxx> #include <tools/gen.hxx> diff --git a/desktop/inc/pch/precompiled_sofficeapp.hxx b/desktop/inc/pch/precompiled_sofficeapp.hxx index a586c369440e..938c487b724c 100644 --- a/desktop/inc/pch/precompiled_sofficeapp.hxx +++ b/desktop/inc/pch/precompiled_sofficeapp.hxx @@ -13,7 +13,7 @@ manual changes will be rewritten by the next run of update_pch.sh (which presumably also fixes all possible problems, so it's usually better to use it). - Generated on 2020-07-09 17:06:23 using: + Generated on 2020-08-12 11:14:49 using: ./bin/update_pch desktop sofficeapp --cutoff=6 --exclude:system --include:module --include:local If after updating build fails, use the following command to locate conflicting headers: @@ -52,6 +52,7 @@ #include <osl/diagnose.h> #include <osl/doublecheckedlocking.h> #include <osl/endian.h> +#include <osl/file.h> #include <osl/file.hxx> #include <osl/getglobalmutex.hxx> #include <osl/interlck.h> @@ -68,6 +69,7 @@ #include <rtl/byteseq.hxx> #include <rtl/digest.h> #include <rtl/instance.hxx> +#include <rtl/locale.h> #include <rtl/math.h> #include <rtl/process.h> #include <rtl/ref.hxx> @@ -164,7 +166,6 @@ #include <svl/svldllapi.h> #include <svl/typedwhich.hxx> #include <svtools/svtdllapi.h> -#include <tools/UnitConversion.hxx> #include <tools/color.hxx> #include <tools/diagnose_ex.h> #include <tools/fontenum.hxx> diff --git a/drawinglayer/inc/pch/precompiled_drawinglayer.hxx b/drawinglayer/inc/pch/precompiled_drawinglayer.hxx index b8c4aadb7dab..75a26ff80bf7 100644 --- a/drawinglayer/inc/pch/precompiled_drawinglayer.hxx +++ b/drawinglayer/inc/pch/precompiled_drawinglayer.hxx @@ -13,7 +13,7 @@ manual changes will be rewritten by the next run of update_pch.sh (which presumably also fixes all possible problems, so it's usually better to use it). - Generated on 2020-07-09 17:06:23 using: + Generated on 2020-08-12 11:14:50 using: ./bin/update_pch drawinglayer drawinglayer --cutoff=4 --exclude:system --exclude:module --exclude:local If after updating build fails, use the following command to locate conflicting headers: @@ -43,12 +43,12 @@ #include <rtl/instance.hxx> #include <rtl/math.hxx> #include <rtl/ref.hxx> -#include <rtl/strbuf.h> #include <rtl/string.h> #include <rtl/string.hxx> #include <rtl/stringconcat.hxx> #include <rtl/stringutils.hxx> #include <rtl/textenc.h> +#include <rtl/ustrbuf.h> #include <rtl/ustring.h> #include <rtl/ustring.hxx> #include <sal/config.h> diff --git a/emfio/inc/pch/precompiled_emfio.hxx b/emfio/inc/pch/precompiled_emfio.hxx index 35519ae8a121..34920dc437b0 100644 --- a/emfio/inc/pch/precompiled_emfio.hxx +++ b/emfio/inc/pch/precompiled_emfio.hxx @@ -13,7 +13,7 @@ manual changes will be rewritten by the next run of update_pch.sh (which presumably also fixes all possible problems, so it's usually better to use it). - Generated on 2020-07-09 17:06:24 using: + Generated on 2020-08-12 11:04:42 using: ./bin/update_pch emfio emfio --cutoff=8 --exclude:system --exclude:module --include:local If after updating build fails, use the following command to locate conflicting headers: @@ -21,7 +21,6 @@ */ #if PCH_LEVEL >= 1 -#include <memory> #include <vector> #endif // PCH_LEVEL >= 1 #if PCH_LEVEL >= 2 diff --git a/external/skia/inc/pch/precompiled_skia.hxx b/external/skia/inc/pch/precompiled_skia.hxx index 4ac84df0f835..0813bcd8e238 100644 --- a/external/skia/inc/pch/precompiled_skia.hxx +++ b/external/skia/inc/pch/precompiled_skia.hxx @@ -13,7 +13,7 @@ manual changes will be rewritten by the next run of update_pch.sh (which presumably also fixes all possible problems, so it's usually better to use it). - Generated on 2020-07-09 17:06:26 using: + Generated on 2020-08-12 11:04:47 using: ./bin/update_pch external/skia skia --cutoff=1 --exclude:system --include:module --include:local If after updating build fails, use the following command to locate conflicting headers: @@ -956,6 +956,7 @@ #endif // PCH_LEVEL >= 3 #if PCH_LEVEL >= 4 #include <skia_compiler.hxx> +#include <skia_opts.hxx> #endif // PCH_LEVEL >= 4 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/framework/inc/pch/precompiled_fwk.hxx b/framework/inc/pch/precompiled_fwk.hxx index 5bed18e35fbd..c0f7bbc7fedb 100644 --- a/framework/inc/pch/precompiled_fwk.hxx +++ b/framework/inc/pch/precompiled_fwk.hxx @@ -13,7 +13,7 @@ manual changes will be rewritten by the next run of update_pch.sh (which presumably also fixes all possible problems, so it's usually better to use it). - Generated on 2020-07-09 17:06:27 using: + Generated on 2020-08-12 11:04:49 using: ./bin/update_pch framework fwk --cutoff=7 --exclude:system --include:module --include:local If after updating build fails, use the following command to locate conflicting headers: @@ -173,7 +173,6 @@ #include <com/sun/star/lang/XInitialization.hpp> #include <com/sun/star/lang/XMultiServiceFactory.hpp> #include <com/sun/star/lang/XServiceInfo.hpp> -#include <com/sun/star/lang/XUnoTunnel.hpp> #include <com/sun/star/ui/ItemStyle.hpp> #include <com/sun/star/ui/UIElementType.hpp> #include <com/sun/star/ui/XImageManager.hpp> @@ -198,7 +197,6 @@ #include <com/sun/star/uno/genfunc.h> #include <com/sun/star/uno/genfunc.hxx> #include <com/sun/star/util/Date.hpp> -#include <com/sun/star/util/Time.hpp> #include <com/sun/star/util/URL.hpp> #include <com/sun/star/util/URLTransformer.hpp> #include <com/sun/star/util/XURLTransformer.hpp> @@ -239,7 +237,6 @@ #include <svtools/toolboxcontroller.hxx> #include <toolkit/awt/vclxmenu.hxx> #include <toolkit/helper/vclunohelper.hxx> -#include <tools/UnitConversion.hxx> #include <tools/color.hxx> #include <tools/diagnose_ex.h> #include <tools/fldunit.hxx> diff --git a/include/vcl/toolkit/svlbitm.hxx b/include/vcl/toolkit/svlbitm.hxx index e4e6fbc57a7d..850763abf76d 100644 --- a/include/vcl/toolkit/svlbitm.hxx +++ b/include/vcl/toolkit/svlbitm.hxx @@ -27,7 +27,7 @@ #include <vcl/dllapi.h> #include <tools/link.hxx> #include <vcl/image.hxx> -#include <vcl/treelistbox.hxx> +#include <vcl/toolkit/treelistbox.hxx> #include <o3tl/typed_flags_set.hxx> class SvTreeListEntry; diff --git a/include/vcl/toolkit/svtabbx.hxx b/include/vcl/toolkit/svtabbx.hxx index 17a0b3282251..3e1a8a00b032 100644 --- a/include/vcl/toolkit/svtabbx.hxx +++ b/include/vcl/toolkit/svtabbx.hxx @@ -23,7 +23,7 @@ #endif #include <vcl/dllapi.h> -#include <vcl/treelistbox.hxx> +#include <vcl/toolkit/treelistbox.hxx> #include <vcl/accessibletableprovider.hxx> #include <tools/debug.hxx> diff --git a/include/vcl/treelist.hxx b/include/vcl/toolkit/treelist.hxx index 50698ec2b68b..3ca4a05b009b 100644 --- a/include/vcl/treelist.hxx +++ b/include/vcl/toolkit/treelist.hxx @@ -17,11 +17,14 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ -#ifndef INCLUDED_VCL_TREELIST_HXX -#define INCLUDED_VCL_TREELIST_HXX +#pragma once + +#if !defined(VCL_DLLIMPLEMENTATION) && !defined(TOOLKIT_DLLIMPLEMENTATION) && !defined(VCL_INTERNALS) +#error "don't use this in new code" +#endif #include <vcl/dllapi.h> -#include <vcl/treelistentries.hxx> +#include <vcl/toolkit/treelistentries.hxx> #include <tools/solar.h> #include <tools/link.hxx> @@ -296,6 +299,4 @@ public: virtual void ModelHasEntryInvalidated( SvTreeListEntry* pEntry ); }; -#endif - /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/include/vcl/treelistbox.hxx b/include/vcl/toolkit/treelistbox.hxx index 578d815c641b..c8ccdd775ac3 100644 --- a/include/vcl/treelistbox.hxx +++ b/include/vcl/toolkit/treelistbox.hxx @@ -17,8 +17,11 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ -#ifndef INCLUDED_VCL_TREELISTBOX_HXX -#define INCLUDED_VCL_TREELISTBOX_HXX +#pragma once + +#if !defined(VCL_DLLIMPLEMENTATION) && !defined(TOOLKIT_DLLIMPLEMENTATION) && !defined(VCL_INTERNALS) +#error "don't use this in new code" +#endif #include <vcl/dllapi.h> @@ -31,7 +34,7 @@ #include <vcl/image.hxx> #include <tools/gen.hxx> #include <tools/contnr.hxx> -#include <vcl/treelist.hxx> +#include <vcl/toolkit/treelist.hxx> #include <vcl/transfer.hxx> #include <vcl/menu.hxx> #include <o3tl/typed_flags_set.hxx> @@ -698,6 +701,4 @@ public: void SetDragHelper(rtl::Reference<TransferDataContainer>& rHelper, sal_uInt8 eDNDConstants); }; -#endif - /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/include/vcl/treelistentries.hxx b/include/vcl/toolkit/treelistentries.hxx index ffe0cb571c55..fdd86dbfaf5f 100644 --- a/include/vcl/treelistentries.hxx +++ b/include/vcl/toolkit/treelistentries.hxx @@ -7,8 +7,12 @@ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ -#ifndef INCLUDED_VCL_TREELISTENTRIES_HXX -#define INCLUDED_VCL_TREELISTENTRIES_HXX +#pragma once + +#if !defined(VCL_DLLIMPLEMENTATION) && !defined(TOOLKIT_DLLIMPLEMENTATION) \ + && !defined(VCL_INTERNALS) +#error "don't use this in new code" +#endif #include <vector> #include <memory> @@ -16,6 +20,4 @@ class SvTreeListEntry; typedef std::vector<std::unique_ptr<SvTreeListEntry>> SvTreeListEntries; -#endif - /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/include/vcl/treelistentry.hxx b/include/vcl/toolkit/treelistentry.hxx index 14a4dc486f44..dbfa87b204ac 100644 --- a/include/vcl/treelistentry.hxx +++ b/include/vcl/toolkit/treelistentry.hxx @@ -17,14 +17,17 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ -#ifndef INCLUDED_VCL_TREELISTENTRY_HXX -#define INCLUDED_VCL_TREELISTENTRY_HXX +#pragma once + +#if !defined(VCL_DLLIMPLEMENTATION) && !defined(TOOLKIT_DLLIMPLEMENTATION) && !defined(VCL_INTERNALS) +#error "don't use this in new code" +#endif #include <vcl/dllapi.h> #include <tools/solar.h> #include <tools/color.hxx> -#include <vcl/treelistbox.hxx> -#include <vcl/treelistentries.hxx> +#include <vcl/toolkit/treelistbox.hxx> +#include <vcl/toolkit/treelistentries.hxx> #include <o3tl/typed_flags_set.hxx> #include <optional> @@ -126,6 +129,4 @@ public: SvTreeListEntry* LastSibling() const; }; -#endif - /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/include/vcl/viewdataentry.hxx b/include/vcl/toolkit/viewdataentry.hxx index c81ab05a97e3..daac693d8893 100644 --- a/include/vcl/viewdataentry.hxx +++ b/include/vcl/toolkit/viewdataentry.hxx @@ -17,8 +17,11 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ -#ifndef INCLUDED_VCL_VIEWDATAENTRY_HXX -#define INCLUDED_VCL_VIEWDATAENTRY_HXX +#pragma once + +#if !defined(VCL_DLLIMPLEMENTATION) && !defined(TOOLKIT_DLLIMPLEMENTATION) && !defined(VCL_INTERNALS) +#error "don't use this in new code" +#endif #include <tools/solar.h> @@ -80,6 +83,4 @@ public: SvViewDataItem& GetItem(size_t nPos); }; -#endif - /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/include/vcl/uitest/uiobject.hxx b/include/vcl/uitest/uiobject.hxx index c5b3f07dbe75..50533157e19b 100644 --- a/include/vcl/uitest/uiobject.hxx +++ b/include/vcl/uitest/uiobject.hxx @@ -16,7 +16,6 @@ #include <vcl/window.hxx> #include <vcl/dllapi.h> -#include <vcl/treelistbox.hxx> #include <set> diff --git a/lotuswordpro/inc/pch/precompiled_lwpft.hxx b/lotuswordpro/inc/pch/precompiled_lwpft.hxx index 0e141f5758ae..27caf0dbd15a 100644 --- a/lotuswordpro/inc/pch/precompiled_lwpft.hxx +++ b/lotuswordpro/inc/pch/precompiled_lwpft.hxx @@ -13,7 +13,7 @@ manual changes will be rewritten by the next run of update_pch.sh (which presumably also fixes all possible problems, so it's usually better to use it). - Generated on 2020-07-09 17:06:27 using: + Generated on 2020-08-12 11:04:50 using: ./bin/update_pch lotuswordpro lwpft --cutoff=2 --exclude:system --exclude:module --exclude:local If after updating build fails, use the following command to locate conflicting headers: @@ -35,7 +35,6 @@ #include <stdio.h> #include <string.h> #include <string_view> -#include <type_traits> #include <utility> #include <vector> #include <boost/cast.hpp> @@ -72,7 +71,6 @@ #include <com/sun/star/xml/sax/XDocumentHandler.hpp> #include <cppuhelper/cppuhelperdllapi.h> #include <o3tl/numeric.hxx> -#include <o3tl/safeint.hxx> #include <o3tl/sorted_vector.hxx> #include <o3tl/typed_flags_set.hxx> #include <tools/color.hxx> diff --git a/oox/inc/pch/precompiled_oox.hxx b/oox/inc/pch/precompiled_oox.hxx index 4be8496666ed..7e46449e4586 100644 --- a/oox/inc/pch/precompiled_oox.hxx +++ b/oox/inc/pch/precompiled_oox.hxx @@ -13,7 +13,7 @@ manual changes will be rewritten by the next run of update_pch.sh (which presumably also fixes all possible problems, so it's usually better to use it). - Generated on 2020-07-09 17:06:27 using: + Generated on 2020-08-12 11:04:50 using: ./bin/update_pch oox oox --cutoff=6 --exclude:system --exclude:module --include:local If after updating build fails, use the following command to locate conflicting headers: @@ -191,7 +191,6 @@ #include <svx/msdffdef.hxx> #include <svx/svdtypes.hxx> #include <svx/svxdllapi.h> -#include <tools/UnitConversion.hxx> #include <tools/color.hxx> #include <tools/diagnose_ex.h> #include <tools/fldunit.hxx> diff --git a/package/inc/pch/precompiled_package2.hxx b/package/inc/pch/precompiled_package2.hxx index 14b835c28a7e..936b61d908ca 100644 --- a/package/inc/pch/precompiled_package2.hxx +++ b/package/inc/pch/precompiled_package2.hxx @@ -13,7 +13,7 @@ manual changes will be rewritten by the next run of update_pch.sh (which presumably also fixes all possible problems, so it's usually better to use it). - Generated on 2020-07-09 17:06:27 using: + Generated on 2020-08-12 11:04:51 using: ./bin/update_pch package package2 --cutoff=3 --exclude:system --include:module --include:local If after updating build fails, use the following command to locate conflicting headers: @@ -48,6 +48,7 @@ #include <osl/diagnose.hxx> #include <osl/doublecheckedlocking.h> #include <osl/endian.h> +#include <osl/file.h> #include <osl/getglobalmutex.hxx> #include <osl/interlck.h> #include <osl/mutex.h> @@ -89,6 +90,7 @@ #include <basegfx/tuple/b3dtuple.hxx> #include <com/sun/star/beans/NamedValue.hpp> #include <com/sun/star/beans/PropertyValue.hpp> +#include <com/sun/star/beans/XPropertySet.hpp> #include <com/sun/star/embed/StorageFormats.hpp> #include <com/sun/star/io/TempFile.hpp> #include <com/sun/star/io/XInputStream.hpp> @@ -97,9 +99,12 @@ #include <com/sun/star/io/XStream.hpp> #include <com/sun/star/lang/DisposedException.hpp> #include <com/sun/star/lang/EventObject.hpp> +#include <com/sun/star/lang/IllegalArgumentException.hpp> +#include <com/sun/star/lang/XInitialization.hpp> #include <com/sun/star/lang/XMultiServiceFactory.hpp> #include <com/sun/star/lang/XServiceInfo.hpp> #include <com/sun/star/lang/XTypeProvider.hpp> +#include <com/sun/star/lang/XUnoTunnel.hpp> #include <com/sun/star/packages/zip/ZipConstants.hpp> #include <com/sun/star/packages/zip/ZipIOException.hpp> #include <com/sun/star/uno/Any.h> @@ -119,6 +124,7 @@ #include <com/sun/star/xml/crypto/DigestID.hpp> #include <comphelper/comphelperdllapi.h> #include <comphelper/processfactory.hxx> +#include <comphelper/refcountedmutex.hxx> #include <comphelper/sequence.hxx> #include <comphelper/servicehelper.hxx> #include <comphelper/storagehelper.hxx> @@ -153,6 +159,7 @@ #include <CRC32.hxx> #include <EncryptedDataHeader.hxx> #include <EncryptionData.hxx> +#include <HashMaps.hxx> #include <PackageConstants.hxx> #include <ThreadedDeflater.hxx> #include <ZipEntry.hxx> @@ -160,7 +167,6 @@ #include <ZipFile.hxx> #include <ZipOutputEntry.hxx> #include <ZipOutputStream.hxx> -#include <ZipPackage.hxx> #include <ZipPackageBuffer.hxx> #include <ZipPackageFolder.hxx> #include <ZipPackageStream.hxx> diff --git a/package/inc/pch/precompiled_xstor.hxx b/package/inc/pch/precompiled_xstor.hxx index 1c6b3821718d..3359d0e7433a 100644 --- a/package/inc/pch/precompiled_xstor.hxx +++ b/package/inc/pch/precompiled_xstor.hxx @@ -13,7 +13,7 @@ manual changes will be rewritten by the next run of update_pch.sh (which presumably also fixes all possible problems, so it's usually better to use it). - Generated on 2019-10-17 15:15:14 using: + Generated on 2020-08-12 11:04:51 using: ./bin/update_pch package xstor --cutoff=2 --exclude:system --include:module --exclude:local If after updating build fails, use the following command to locate conflicting headers: @@ -41,7 +41,6 @@ #include <osl/interlck.h> #include <osl/mutex.h> #include <osl/mutex.hxx> -#include <osl/time.h> #include <rtl/alloc.h> #include <rtl/digest.h> #include <rtl/instance.hxx> @@ -51,7 +50,6 @@ #include <rtl/stringutils.hxx> #include <rtl/textcvt.h> #include <rtl/textenc.h> -#include <rtl/unload.h> #include <rtl/ustring.h> #include <rtl/ustring.hxx> #include <sal/config.h> diff --git a/reportdesign/inc/pch/precompiled_rpt.hxx b/reportdesign/inc/pch/precompiled_rpt.hxx index 2041de5742a0..a5ae2eda1218 100644 --- a/reportdesign/inc/pch/precompiled_rpt.hxx +++ b/reportdesign/inc/pch/precompiled_rpt.hxx @@ -13,7 +13,7 @@ manual changes will be rewritten by the next run of update_pch.sh (which presumably also fixes all possible problems, so it's usually better to use it). - Generated on 2020-07-09 17:06:28 using: + Generated on 2020-08-12 11:04:52 using: ./bin/update_pch reportdesign rpt --cutoff=9 --exclude:system --include:module --include:local If after updating build fails, use the following command to locate conflicting headers: @@ -61,7 +61,6 @@ #include <osl/mutex.h> #include <osl/mutex.hxx> #include <osl/thread.h> -#include <osl/time.h> #include <rtl/alloc.h> #include <rtl/instance.hxx> #include <rtl/locale.h> @@ -74,7 +73,6 @@ #include <rtl/stringutils.hxx> #include <rtl/textcvt.h> #include <rtl/textenc.h> -#include <rtl/unload.h> #include <rtl/ustrbuf.hxx> #include <rtl/ustring.h> #include <rtl/ustring.hxx> @@ -170,7 +168,6 @@ #include <com/sun/star/util/Date.hpp> #include <com/sun/star/util/DateTime.hpp> #include <com/sun/star/util/Time.hpp> -#include <com/sun/star/util/XAccounting.hpp> #include <comphelper/comphelperdllapi.h> #include <comphelper/interfacecontainer2.hxx> #include <comphelper/sequence.hxx> @@ -195,7 +192,6 @@ #include <drawinglayer/primitive2d/CommonTypes.hxx> #include <drawinglayer/primitive2d/Primitive2DContainer.hxx> #include <drawinglayer/primitive2d/Primitive2DVisitor.hxx> -#include <drawinglayer/primitive2d/baseprimitive2d.hxx> #include <editeng/editengdllapi.h> #include <i18nlangtag/lang.h> #include <o3tl/cow_wrapper.hxx> @@ -233,7 +229,6 @@ #include <svx/svdtypes.hxx> #include <svx/svxdllapi.h> #include <svx/xdef.hxx> -#include <tools/UnitConversion.hxx> #include <tools/color.hxx> #include <tools/date.hxx> #include <tools/datetime.hxx> diff --git a/reportdesign/inc/pch/precompiled_rptui.hxx b/reportdesign/inc/pch/precompiled_rptui.hxx index 75a7fbda17a1..1c1028e442f1 100644 --- a/reportdesign/inc/pch/precompiled_rptui.hxx +++ b/reportdesign/inc/pch/precompiled_rptui.hxx @@ -13,7 +13,7 @@ manual changes will be rewritten by the next run of update_pch.sh (which presumably also fixes all possible problems, so it's usually better to use it). - Generated on 2020-07-09 17:06:28 using: + Generated on 2020-08-12 11:04:53 using: ./bin/update_pch reportdesign rptui --cutoff=4 --exclude:system --include:module --include:local If after updating build fails, use the following command to locate conflicting headers: @@ -56,7 +56,6 @@ #include <utility> #include <vector> #include <boost/intrusive_ptr.hpp> -#include <boost/property_tree/json_parser.hpp> #include <boost/property_tree/ptree_fwd.hpp> #endif // PCH_LEVEL >= 1 #if PCH_LEVEL >= 2 @@ -74,15 +73,12 @@ #include <rtl/locale.h> #include <rtl/math.h> #include <rtl/ref.hxx> -#include <rtl/strbuf.h> -#include <rtl/strbuf.hxx> #include <rtl/string.h> #include <rtl/string.hxx> #include <rtl/stringconcat.hxx> #include <rtl/stringutils.hxx> #include <rtl/textcvt.h> #include <rtl/textenc.h> -#include <rtl/unload.h> #include <rtl/ustrbuf.h> #include <rtl/ustrbuf.hxx> #include <rtl/ustring.h> @@ -136,8 +132,6 @@ #include <vcl/outdevmap.hxx> #include <vcl/outdevstate.hxx> #include <vcl/region.hxx> -#include <vcl/salctype.hxx> -#include <vcl/salgtype.hxx> #include <vcl/salnativewidgets.hxx> #include <vcl/scopedbitmapaccess.hxx> #include <vcl/settings.hxx> @@ -152,7 +146,6 @@ #include <vcl/vclptr.hxx> #include <vcl/vclreferencebase.hxx> #include <vcl/vectorgraphicdata.hxx> -#include <vcl/virdev.hxx> #include <vcl/wall.hxx> #include <vcl/weld.hxx> #include <vcl/window.hxx> @@ -258,7 +251,6 @@ #include <com/sun/star/util/Date.hpp> #include <com/sun/star/util/DateTime.hpp> #include <com/sun/star/util/Time.hpp> -#include <com/sun/star/util/XAccounting.hpp> #include <com/sun/star/view/XSelectionChangeListener.hpp> #include <comphelper/comphelperdllapi.h> #include <comphelper/interfacecontainer2.hxx> @@ -290,7 +282,6 @@ #include <drawinglayer/primitive2d/CommonTypes.hxx> #include <drawinglayer/primitive2d/Primitive2DContainer.hxx> #include <drawinglayer/primitive2d/Primitive2DVisitor.hxx> -#include <drawinglayer/primitive2d/baseprimitive2d.hxx> #include <editeng/editdata.hxx> #include <editeng/editeng.hxx> #include <editeng/editengdllapi.h> @@ -407,7 +398,6 @@ #include <svx/xtable.hxx> #include <toolkit/helper/convert.hxx> #include <toolkit/helper/vclunohelper.hxx> -#include <tools/UnitConversion.hxx> #include <tools/color.hxx> #include <tools/date.hxx> #include <tools/datetime.hxx> diff --git a/reportdesign/inc/pch/precompiled_rptxml.hxx b/reportdesign/inc/pch/precompiled_rptxml.hxx index 181bd1be2b32..d85541d990e7 100644 --- a/reportdesign/inc/pch/precompiled_rptxml.hxx +++ b/reportdesign/inc/pch/precompiled_rptxml.hxx @@ -13,7 +13,7 @@ manual changes will be rewritten by the next run of update_pch.sh (which presumably also fixes all possible problems, so it's usually better to use it). - Generated on 2020-07-09 17:06:29 using: + Generated on 2020-08-12 11:04:54 using: ./bin/update_pch reportdesign rptxml --cutoff=2 --exclude:system --exclude:module --include:local If after updating build fails, use the following command to locate conflicting headers: @@ -22,7 +22,6 @@ #if PCH_LEVEL >= 1 #include <cassert> -#include <cstddef> #include <cstring> #include <limits> #include <memory> @@ -42,7 +41,6 @@ #include <rtl/stringconcat.hxx> #include <rtl/stringutils.hxx> #include <rtl/textenc.h> -#include <rtl/unload.h> #include <rtl/ustrbuf.h> #include <rtl/ustrbuf.hxx> #include <rtl/ustring.hxx> @@ -62,7 +60,6 @@ #include <com/sun/star/chart2/data/XDatabaseDataProvider.hpp> #include <com/sun/star/embed/ElementModes.hpp> #include <com/sun/star/lang/XMultiServiceFactory.hpp> -#include <com/sun/star/lang/XUnoTunnel.hpp> #include <com/sun/star/reflection/ProxyFactory.hpp> #include <com/sun/star/report/ForceNewPage.hpp> #include <com/sun/star/report/GroupOn.hpp> @@ -74,7 +71,6 @@ #include <com/sun/star/sdb/CommandType.hpp> #include <com/sun/star/table/BorderLine2.hpp> #include <com/sun/star/uno/Any.hxx> -#include <com/sun/star/uno/Reference.h> #include <com/sun/star/uno/Reference.hxx> #include <com/sun/star/util/MeasureUnit.hpp> #include <comphelper/comphelperdllapi.h> @@ -83,8 +79,6 @@ #include <comphelper/propertysetinfo.hxx> #include <comphelper/sequenceashashmap.hxx> #include <connectivity/dbtools.hxx> -#include <cppuhelper/cppuhelperdllapi.h> -#include <cppuhelper/factory.hxx> #include <cppuhelper/supportsservice.hxx> #include <o3tl/typed_flags_set.hxx> #include <salhelper/simplereferenceobject.hxx> diff --git a/sc/inc/pch/precompiled_sc.hxx b/sc/inc/pch/precompiled_sc.hxx index 47a447ac242f..be1ab9f73c96 100644 --- a/sc/inc/pch/precompiled_sc.hxx +++ b/sc/inc/pch/precompiled_sc.hxx @@ -13,7 +13,7 @@ manual changes will be rewritten by the next run of update_pch.sh (which presumably also fixes all possible problems, so it's usually better to use it). - Generated on 2020-07-09 17:06:41 using: + Generated on 2020-08-12 11:05:25 using: ./bin/update_pch sc sc --cutoff=12 --exclude:system --include:module --include:local If after updating build fails, use the following command to locate conflicting headers: @@ -258,7 +258,6 @@ #include <com/sun/star/util/Date.hpp> #include <com/sun/star/util/DateTime.hpp> #include <com/sun/star/util/Time.hpp> -#include <com/sun/star/util/XAccounting.hpp> #include <com/sun/star/util/XUpdatable.hpp> #include <com/sun/star/xml/sax/XFastContextHandler.hpp> #include <comphelper/broadcasthelper.hxx> @@ -302,7 +301,6 @@ #include <drawinglayer/primitive2d/CommonTypes.hxx> #include <drawinglayer/primitive2d/Primitive2DContainer.hxx> #include <drawinglayer/primitive2d/Primitive2DVisitor.hxx> -#include <drawinglayer/primitive2d/baseprimitive2d.hxx> #include <editeng/adjustitem.hxx> #include <editeng/borderline.hxx> #include <editeng/boxitem.hxx> @@ -432,7 +430,6 @@ #include <svx/xit.hxx> #include <svx/xpoly.hxx> #include <svx/xtable.hxx> -#include <tools/UnitConversion.hxx> #include <tools/color.hxx> #include <tools/date.hxx> #include <tools/datetime.hxx> diff --git a/sc/inc/pch/precompiled_scfilt.hxx b/sc/inc/pch/precompiled_scfilt.hxx index a9cd707cfe22..e7a218681f23 100644 --- a/sc/inc/pch/precompiled_scfilt.hxx +++ b/sc/inc/pch/precompiled_scfilt.hxx @@ -13,7 +13,7 @@ manual changes will be rewritten by the next run of update_pch.sh (which presumably also fixes all possible problems, so it's usually better to use it). - Generated on 2020-07-09 17:06:45 using: + Generated on 2020-08-12 11:05:33 using: ./bin/update_pch sc scfilt --cutoff=4 --exclude:system --exclude:module --include:local If after updating build fails, use the following command to locate conflicting headers: @@ -158,7 +158,7 @@ #include <cppuhelper/implbase_ex.hxx> #include <cppuhelper/weak.hxx> #include <cppuhelper/weakref.hxx> -#include <drawinglayer/primitive2d/baseprimitive2d.hxx> +#include <drawinglayer/primitive2d/Primitive2DContainer.hxx> #include <editeng/borderline.hxx> #include <editeng/boxitem.hxx> #include <editeng/brushitem.hxx> diff --git a/sc/inc/pch/precompiled_vbaobj.hxx b/sc/inc/pch/precompiled_vbaobj.hxx index ae93f9bf6540..15e228953ac7 100644 --- a/sc/inc/pch/precompiled_vbaobj.hxx +++ b/sc/inc/pch/precompiled_vbaobj.hxx @@ -13,7 +13,7 @@ manual changes will be rewritten by the next run of update_pch.sh (which presumably also fixes all possible problems, so it's usually better to use it). - Generated on 2020-02-01 10:58:11 using: + Generated on 2020-08-12 11:05:37 using: ./bin/update_pch sc vbaobj --cutoff=1 --exclude:system --exclude:module --include:local If after updating build fails, use the following command to locate conflicting headers: @@ -204,7 +204,6 @@ #include <comphelper/documentinfo.hxx> #include <comphelper/processfactory.hxx> #include <comphelper/sequence.hxx> -#include <comphelper/servicedecl.hxx> #include <comphelper/servicehelper.hxx> #include <comphelper/types.hxx> #include <cppuhelper/exc_hlp.hxx> diff --git a/sd/inc/pch/precompiled_sd.hxx b/sd/inc/pch/precompiled_sd.hxx index fafee136cbbe..caa5c44cf1bd 100644 --- a/sd/inc/pch/precompiled_sd.hxx +++ b/sd/inc/pch/precompiled_sd.hxx @@ -13,7 +13,7 @@ manual changes will be rewritten by the next run of update_pch.sh (which presumably also fixes all possible problems, so it's usually better to use it). - Generated on 2020-07-09 17:06:48 using: + Generated on 2020-08-12 11:05:42 using: ./bin/update_pch sd sd --cutoff=4 --exclude:system --exclude:module --include:local If after updating build fails, use the following command to locate conflicting headers: @@ -191,7 +191,6 @@ #include <com/sun/star/lang/XInitialization.hpp> #include <com/sun/star/lang/XMultiServiceFactory.hpp> #include <com/sun/star/lang/XServiceInfo.hpp> -#include <com/sun/star/lang/XTypeProvider.hpp> #include <com/sun/star/lang/XUnoTunnel.hpp> #include <com/sun/star/media/XPlayer.hpp> #include <com/sun/star/office/XAnnotation.hpp> @@ -216,12 +215,14 @@ #include <com/sun/star/uno/XInterface.hpp> #include <com/sun/star/uno/genfunc.hxx> #include <com/sun/star/util/DateTime.hpp> +#include <com/sun/star/util/Time.hpp> #include <com/sun/star/util/URLTransformer.hpp> #include <com/sun/star/util/XCloneable.hpp> #include <com/sun/star/view/XSelectionSupplier.hpp> #include <comphelper/classids.hxx> #include <comphelper/comphelperdllapi.h> #include <comphelper/extract.hxx> +#include <comphelper/interfacecontainer2.hxx> #include <comphelper/lok.hxx> #include <comphelper/processfactory.hxx> #include <comphelper/propertysequence.hxx> @@ -252,7 +253,6 @@ #include <cppuhelper/supportsservice.hxx> #include <drawinglayer/drawinglayerdllapi.h> #include <drawinglayer/geometry/viewinformation2d.hxx> -#include <drawinglayer/primitive2d/baseprimitive2d.hxx> #include <editeng/AccessibleComponentBase.hxx> #include <editeng/AccessibleContextBase.hxx> #include <editeng/adjustitem.hxx> @@ -451,6 +451,7 @@ #include <tools/ref.hxx> #include <tools/solar.h> #include <tools/stream.hxx> +#include <tools/time.hxx> #include <tools/toolsdllapi.h> #include <tools/urlobj.hxx> #include <tools/weakbase.h> diff --git a/sd/inc/pch/precompiled_sdui.hxx b/sd/inc/pch/precompiled_sdui.hxx index e5feed35fbbb..d1360aea915d 100644 --- a/sd/inc/pch/precompiled_sdui.hxx +++ b/sd/inc/pch/precompiled_sdui.hxx @@ -13,7 +13,7 @@ manual changes will be rewritten by the next run of update_pch.sh (which presumably also fixes all possible problems, so it's usually better to use it). - Generated on 2020-07-09 17:06:50 using: + Generated on 2020-08-12 11:05:46 using: ./bin/update_pch sd sdui --cutoff=4 --exclude:system --include:module --include:local If after updating build fails, use the following command to locate conflicting headers: @@ -118,6 +118,7 @@ #include <vcl/floatwin.hxx> #include <vcl/fntstyle.hxx> #include <vcl/font.hxx> +#include <vcl/formatter.hxx> #include <vcl/gdimtf.hxx> #include <vcl/gfxlink.hxx> #include <vcl/graph.hxx> @@ -179,6 +180,7 @@ #include <com/sun/star/awt/Key.hpp> #include <com/sun/star/awt/KeyGroup.hpp> #include <com/sun/star/awt/SystemPointer.hpp> +#include <com/sun/star/awt/XWindow.hpp> #include <com/sun/star/beans/PropertyValue.hpp> #include <com/sun/star/beans/XPropertySet.hpp> #include <com/sun/star/container/XChild.hpp> @@ -277,7 +279,6 @@ #include <com/sun/star/util/Date.hpp> #include <com/sun/star/util/DateTime.hpp> #include <com/sun/star/util/Time.hpp> -#include <com/sun/star/util/XAccounting.hpp> #include <com/sun/star/util/XCloseable.hpp> #include <com/sun/star/util/XModifiable2.hpp> #include <com/sun/star/view/XPrintJobBroadcaster.hpp> @@ -306,7 +307,6 @@ #include <drawinglayer/primitive2d/CommonTypes.hxx> #include <drawinglayer/primitive2d/Primitive2DContainer.hxx> #include <drawinglayer/primitive2d/Primitive2DVisitor.hxx> -#include <drawinglayer/primitive2d/baseprimitive2d.hxx> #include <editeng/editdata.hxx> #include <editeng/editengdllapi.h> #include <editeng/editstat.hxx> @@ -418,7 +418,6 @@ #include <svx/xhatch.hxx> #include <svx/xpoly.hxx> #include <svx/xtable.hxx> -#include <tools/UnitConversion.hxx> #include <tools/color.hxx> #include <tools/date.hxx> #include <tools/datetime.hxx> diff --git a/sdext/inc/pch/precompiled_PresentationMinimizer.hxx b/sdext/inc/pch/precompiled_PresentationMinimizer.hxx index 832bb7a60d9a..6f2a3aa81a79 100644 --- a/sdext/inc/pch/precompiled_PresentationMinimizer.hxx +++ b/sdext/inc/pch/precompiled_PresentationMinimizer.hxx @@ -13,7 +13,7 @@ manual changes will be rewritten by the next run of update_pch.sh (which presumably also fixes all possible problems, so it's usually better to use it). - Generated on 2020-07-09 17:06:50 using: + Generated on 2020-08-12 11:05:47 using: ./bin/update_pch sdext PresentationMinimizer --cutoff=2 --exclude:system --include:module --include:local If after updating build fails, use the following command to locate conflicting headers: @@ -65,7 +65,6 @@ #include <rtl/stringutils.hxx> #include <rtl/textcvt.h> #include <rtl/textenc.h> -#include <rtl/unload.h> #include <rtl/ustrbuf.hxx> #include <rtl/ustring.h> #include <rtl/ustring.hxx> @@ -119,7 +118,6 @@ #include <com/sun/star/uno/Any.h> #include <com/sun/star/uno/Any.hxx> #include <com/sun/star/uno/Reference.h> -#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.hxx> @@ -130,7 +128,6 @@ #include <com/sun/star/uno/genfunc.h> #include <com/sun/star/uno/genfunc.hxx> #include <com/sun/star/util/Date.hpp> -#include <com/sun/star/util/Time.hpp> #include <com/sun/star/util/URL.hpp> #include <com/sun/star/util/URLTransformer.hpp> #include <com/sun/star/util/XURLTransformer.hpp> @@ -140,7 +137,6 @@ #include <cppu/unotype.hxx> #include <cppuhelper/cppuhelperdllapi.h> #include <cppuhelper/exc_hlp.hxx> -#include <cppuhelper/factory.hxx> #include <i18nlangtag/lang.h> #include <o3tl/cow_wrapper.hxx> #include <o3tl/strong_int.hxx> @@ -154,8 +150,6 @@ #include <tools/fontenum.hxx> #include <tools/gen.hxx> #include <tools/link.hxx> -#include <tools/solar.h> -#include <tools/time.hxx> #include <tools/toolsdllapi.h> #include <typelib/typeclass.h> #include <typelib/typedescription.h> diff --git a/sdext/inc/pch/precompiled_PresenterScreen.hxx b/sdext/inc/pch/precompiled_PresenterScreen.hxx index 7a7a35c9f0cb..662b046d3660 100644 --- a/sdext/inc/pch/precompiled_PresenterScreen.hxx +++ b/sdext/inc/pch/precompiled_PresenterScreen.hxx @@ -13,7 +13,7 @@ manual changes will be rewritten by the next run of update_pch.sh (which presumably also fixes all possible problems, so it's usually better to use it). - Generated on 2020-02-01 10:58:12 using: + Generated on 2020-08-12 11:05:47 using: ./bin/update_pch sdext PresenterScreen --cutoff=2 --exclude:system --include:module --exclude:local If after updating build fails, use the following command to locate conflicting headers: @@ -50,7 +50,6 @@ #include <osl/conditn.hxx> #include <osl/diagnose.h> #include <osl/doublecheckedlocking.h> -#include <osl/endian.h> #include <osl/getglobalmutex.hxx> #include <osl/interlck.h> #include <osl/mutex.h> @@ -67,7 +66,6 @@ #include <rtl/stringutils.hxx> #include <rtl/textcvt.h> #include <rtl/textenc.h> -#include <rtl/unload.h> #include <rtl/ustrbuf.hxx> #include <rtl/ustring.h> #include <rtl/ustring.hxx> @@ -115,7 +113,6 @@ #include <com/sun/star/uno/Any.h> #include <com/sun/star/uno/Any.hxx> #include <com/sun/star/uno/Reference.h> -#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.hxx> @@ -133,10 +130,10 @@ #include <cppu/unotype.hxx> #include <cppuhelper/compbase.hxx> #include <cppuhelper/cppuhelperdllapi.h> -#include <cppuhelper/factory.hxx> #include <cppuhelper/implbase_ex.hxx> #include <cppuhelper/implbase_ex_post.hxx> #include <cppuhelper/implbase_ex_pre.hxx> +#include <cppuhelper/supportsservice.hxx> #include <cppuhelper/weak.hxx> #include <i18nlangtag/lang.h> #include <o3tl/safeint.hxx> @@ -146,7 +143,6 @@ #include <tools/diagnose_ex.h> #include <tools/gen.hxx> #include <tools/link.hxx> -#include <tools/solar.h> #include <tools/toolsdllapi.h> #include <typelib/typeclass.h> #include <typelib/typedescription.h> diff --git a/sfx2/inc/pch/precompiled_sfx.hxx b/sfx2/inc/pch/precompiled_sfx.hxx index 58fe30240dd5..c1bf5e00e2c4 100644 --- a/sfx2/inc/pch/precompiled_sfx.hxx +++ b/sfx2/inc/pch/precompiled_sfx.hxx @@ -13,7 +13,7 @@ manual changes will be rewritten by the next run of update_pch.sh (which presumably also fixes all possible problems, so it's usually better to use it). - Generated on 2020-06-26 20:19:27 using: + Generated on 2020-08-12 11:05:48 using: ./bin/update_pch sfx2 sfx --cutoff=3 --exclude:system --exclude:module --exclude:local If after updating build fails, use the following command to locate conflicting headers: @@ -125,6 +125,7 @@ #include <vcl/vclptr.hxx> #include <vcl/virdev.hxx> #include <vcl/weld.hxx> +#include <vcl/weldutils.hxx> #include <vcl/window.hxx> #include <vcl/wrkwin.hxx> #endif // PCH_LEVEL >= 2 @@ -290,8 +291,6 @@ #include <comphelper/types.hxx> #include <cppu/unotype.hxx> #include <cppuhelper/basemutex.hxx> -#include <cppuhelper/compbase.hxx> -#include <cppuhelper/compbase_ex.hxx> #include <cppuhelper/cppuhelperdllapi.h> #include <cppuhelper/exc_hlp.hxx> #include <cppuhelper/implbase.hxx> @@ -300,7 +299,6 @@ #include <cppuhelper/supportsservice.hxx> #include <cppuhelper/weak.hxx> #include <cppuhelper/weakref.hxx> -#include <drawinglayer/attribute/fillgraphicattribute.hxx> #include <drawinglayer/drawinglayerdllapi.h> #include <drawinglayer/primitive2d/PolyPolygonColorPrimitive2D.hxx> #include <drawinglayer/primitive2d/PolyPolygonSelectionPrimitive2D.hxx> diff --git a/slideshow/inc/pch/precompiled_slideshow.hxx b/slideshow/inc/pch/precompiled_slideshow.hxx index 192fc618102c..51b09259e26b 100644 --- a/slideshow/inc/pch/precompiled_slideshow.hxx +++ b/slideshow/inc/pch/precompiled_slideshow.hxx @@ -13,7 +13,7 @@ manual changes will be rewritten by the next run of update_pch.sh (which presumably also fixes all possible problems, so it's usually better to use it). - Generated on 2020-07-09 17:06:51 using: + Generated on 2020-08-12 11:05:49 using: ./bin/update_pch slideshow slideshow --cutoff=4 --exclude:system --include:module --exclude:local If after updating build fails, use the following command to locate conflicting headers: @@ -154,7 +154,6 @@ #include <com/sun/star/lang/DisposedException.hpp> #include <com/sun/star/lang/EventObject.hpp> #include <com/sun/star/lang/NoSupportException.hpp> -#include <com/sun/star/lang/XServiceInfo.hpp> #include <com/sun/star/lang/XTypeProvider.hpp> #include <com/sun/star/lang/XUnoTunnel.hpp> #include <com/sun/star/presentation/ParagraphTarget.hpp> @@ -230,7 +229,6 @@ #include <svx/shapeproperty.hxx> #include <svx/svdtypes.hxx> #include <svx/svxdllapi.h> -#include <tools/UnitConversion.hxx> #include <tools/color.hxx> #include <tools/diagnose_ex.h> #include <tools/fontenum.hxx> diff --git a/solenv/clang-format/excludelist b/solenv/clang-format/excludelist index e8fb15c70220..3ae46bd3213a 100644 --- a/solenv/clang-format/excludelist +++ b/solenv/clang-format/excludelist @@ -7447,11 +7447,12 @@ include/vcl/toolkit/svlbitm.hxx include/vcl/toolkit/svtabbx.hxx include/vcl/toolkit/tabdlg.hxx include/vcl/toolkit/throbber.hxx +include/vcl/toolkit/treelist.hxx +include/vcl/toolkit/treelistbox.hxx +include/vcl/toolkit/treelistentry.hxx include/vcl/toolkit/unowrap.hxx +include/vcl/toolkit/viewdataentry.hxx include/vcl/transfer.hxx -include/vcl/treelist.hxx -include/vcl/treelistbox.hxx -include/vcl/treelistentry.hxx include/vcl/txtattr.hxx include/vcl/uitest/factory.hxx include/vcl/uitest/uiobject.hxx @@ -7466,7 +7467,6 @@ include/vcl/vclmedit.hxx include/vcl/vclptr.hxx include/vcl/vclreferencebase.hxx include/vcl/vectorgraphicdata.hxx -include/vcl/viewdataentry.hxx include/vcl/virdev.hxx include/vcl/waitobj.hxx include/vcl/wall.hxx diff --git a/starmath/inc/pch/precompiled_sm.hxx b/starmath/inc/pch/precompiled_sm.hxx index 1e83acec8ab0..5998ec45322c 100644 --- a/starmath/inc/pch/precompiled_sm.hxx +++ b/starmath/inc/pch/precompiled_sm.hxx @@ -13,7 +13,7 @@ manual changes will be rewritten by the next run of update_pch.sh (which presumably also fixes all possible problems, so it's usually better to use it). - Generated on 2020-07-09 17:06:51 using: + Generated on 2020-08-12 11:05:50 using: ./bin/update_pch starmath sm --cutoff=5 --exclude:system --exclude:module --include:local If after updating build fails, use the following command to locate conflicting headers: @@ -37,7 +37,6 @@ #include <type_traits> #include <utility> #include <vector> -#include <boost/property_tree/json_parser.hpp> #include <boost/property_tree/ptree_fwd.hpp> #endif // PCH_LEVEL >= 1 #if PCH_LEVEL >= 2 @@ -124,7 +123,6 @@ #include <svl/typedwhich.hxx> #include <svtools/colorcfg.hxx> #include <svx/svxdllapi.h> -#include <tools/UnitConversion.hxx> #include <tools/color.hxx> #include <tools/gen.hxx> #include <tools/lineend.hxx> diff --git a/svl/inc/pch/precompiled_svl.hxx b/svl/inc/pch/precompiled_svl.hxx index 4fc2cb3bcc9e..248a68569e88 100644 --- a/svl/inc/pch/precompiled_svl.hxx +++ b/svl/inc/pch/precompiled_svl.hxx @@ -13,7 +13,7 @@ manual changes will be rewritten by the next run of update_pch.sh (which presumably also fixes all possible problems, so it's usually better to use it). - Generated on 2020-07-09 17:06:52 using: + Generated on 2020-08-12 11:15:25 using: ./bin/update_pch svl svl --cutoff=6 --exclude:system --exclude:module --exclude:local If after updating build fails, use the following command to locate conflicting headers: @@ -40,7 +40,6 @@ #include <osl/diagnose.h> #include <osl/doublecheckedlocking.h> #include <osl/endian.h> -#include <osl/file.h> #include <osl/getglobalmutex.hxx> #include <osl/interlck.h> #include <osl/mutex.hxx> @@ -63,6 +62,7 @@ #include <rtl/stringutils.hxx> #include <rtl/textenc.h> #include <rtl/ustrbuf.hxx> +#include <rtl/ustring.h> #include <rtl/ustring.hxx> #include <rtl/uuid.h> #include <sal/backtrace.hxx> diff --git a/svtools/inc/pch/precompiled_svt.hxx b/svtools/inc/pch/precompiled_svt.hxx index 381c6c6271bf..31835a86a98e 100644 --- a/svtools/inc/pch/precompiled_svt.hxx +++ b/svtools/inc/pch/precompiled_svt.hxx @@ -13,7 +13,7 @@ manual changes will be rewritten by the next run of update_pch.sh (which presumably also fixes all possible problems, so it's usually better to use it). - Generated on 2020-07-29 16:22:56 using: + Generated on 2020-08-12 11:05:52 using: ./bin/update_pch svtools svt --cutoff=4 --exclude:system --include:module --exclude:local If after updating build fails, use the following command to locate conflicting headers: @@ -337,7 +337,6 @@ #include <toolkit/helper/macros.hxx> #include <toolkit/helper/mutexhelper.hxx> #include <toolkit/helper/vclunohelper.hxx> -#include <tools/UnitConversion.hxx> #include <tools/color.hxx> #include <tools/date.hxx> #include <tools/datetime.hxx> diff --git a/svx/inc/pch/precompiled_svx.hxx b/svx/inc/pch/precompiled_svx.hxx index e1f9ecaf7053..83f7ff3316e5 100644 --- a/svx/inc/pch/precompiled_svx.hxx +++ b/svx/inc/pch/precompiled_svx.hxx @@ -13,7 +13,7 @@ manual changes will be rewritten by the next run of update_pch.sh (which presumably also fixes all possible problems, so it's usually better to use it). - Generated on 2020-07-25 14:55:56 using: + Generated on 2020-08-12 11:05:53 using: ./bin/update_pch svx svx --cutoff=3 --exclude:system --exclude:module --include:local If after updating build fails, use the following command to locate conflicting headers: @@ -243,7 +243,7 @@ #include <cppuhelper/weakref.hxx> #include <drawinglayer/drawinglayerdllapi.h> #include <drawinglayer/geometry/viewinformation2d.hxx> -#include <drawinglayer/primitive2d/baseprimitive2d.hxx> +#include <drawinglayer/primitive2d/Primitive2DContainer.hxx> #include <editeng/borderline.hxx> #include <editeng/brushitem.hxx> #include <editeng/colritem.hxx> @@ -337,7 +337,6 @@ #include <svtools/unitconv.hxx> #include <svtools/valueset.hxx> #include <toolkit/helper/vclunohelper.hxx> -#include <tools/UnitConversion.hxx> #include <tools/color.hxx> #include <tools/date.hxx> #include <tools/datetime.hxx> diff --git a/svx/inc/pch/precompiled_svxcore.hxx b/svx/inc/pch/precompiled_svxcore.hxx index 2684415e5cd1..cb8cdc67d053 100644 --- a/svx/inc/pch/precompiled_svxcore.hxx +++ b/svx/inc/pch/precompiled_svxcore.hxx @@ -13,7 +13,7 @@ manual changes will be rewritten by the next run of update_pch.sh (which presumably also fixes all possible problems, so it's usually better to use it). - Generated on 2020-07-31 16:53:36 using: + Generated on 2020-08-12 11:15:33 using: ./bin/update_pch svx svxcore --cutoff=7 --exclude:system --include:module --exclude:local If after updating build fails, use the following command to locate conflicting headers: @@ -65,6 +65,7 @@ #include <osl/getglobalmutex.hxx> #include <osl/interlck.h> #include <osl/mutex.hxx> +#include <osl/thread.h> #include <osl/time.h> #include <rtl/alloc.h> #include <rtl/character.hxx> @@ -74,7 +75,6 @@ #include <rtl/math.hxx> #include <rtl/ref.hxx> #include <rtl/strbuf.h> -#include <rtl/strbuf.hxx> #include <rtl/string.h> #include <rtl/string.hxx> #include <rtl/stringconcat.hxx> @@ -93,6 +93,7 @@ #include <sal/types.h> #include <sal/typesizes.h> #include <vcl/AccessibleBrowseBoxObjType.hxx> +#include <vcl/BitmapColor.hxx> #include <vcl/EnumContext.hxx> #include <vcl/GraphicAttributes.hxx> #include <vcl/GraphicExternalLink.hxx> @@ -376,7 +377,6 @@ #include <svtools/svtdllapi.h> #include <svtools/valueset.hxx> #include <toolkit/helper/vclunohelper.hxx> -#include <tools/UnitConversion.hxx> #include <tools/bigint.hxx> #include <tools/color.hxx> #include <tools/date.hxx> @@ -401,6 +401,7 @@ #include <typelib/typeclass.h> #include <typelib/typedescription.h> #include <typelib/uik.h> +#include <ucbhelper/content.hxx> #include <uno/any2.h> #include <uno/data.h> #include <uno/sequence2.h> diff --git a/sw/inc/pch/precompiled_msword.hxx b/sw/inc/pch/precompiled_msword.hxx index e85a96a324cf..cd416bb010b2 100644 --- a/sw/inc/pch/precompiled_msword.hxx +++ b/sw/inc/pch/precompiled_msword.hxx @@ -13,7 +13,7 @@ manual changes will be rewritten by the next run of update_pch.sh (which presumably also fixes all possible problems, so it's usually better to use it). - Generated on 2020-07-09 17:07:02 using: + Generated on 2020-08-12 11:06:17 using: ./bin/update_pch sw msword --cutoff=4 --exclude:system --include:module --include:local If after updating build fails, use the following command to locate conflicting headers: @@ -232,7 +232,6 @@ #include <com/sun/star/lang/EventObject.hpp> #include <com/sun/star/lang/IllegalArgumentException.hpp> #include <com/sun/star/lang/Locale.hpp> -#include <com/sun/star/lang/XComponent.hpp> #include <com/sun/star/lang/XMultiServiceFactory.hpp> #include <com/sun/star/lang/XServiceInfo.hpp> #include <com/sun/star/lang/XTypeProvider.hpp> @@ -265,7 +264,6 @@ #include <com/sun/star/util/Date.hpp> #include <com/sun/star/util/DateTime.hpp> #include <com/sun/star/util/Time.hpp> -#include <com/sun/star/util/XAccounting.hpp> #include <com/sun/star/xml/sax/XFastAttributeList.hpp> #include <comphelper/comphelperdllapi.h> #include <comphelper/processfactory.hxx> @@ -278,22 +276,17 @@ #include <cppu/cppudllapi.h> #include <cppu/unotype.hxx> #include <cppuhelper/basemutex.hxx> -#include <cppuhelper/compbase.hxx> -#include <cppuhelper/compbase_ex.hxx> #include <cppuhelper/cppuhelperdllapi.h> #include <cppuhelper/implbase.hxx> #include <cppuhelper/implbase_ex.hxx> #include <cppuhelper/implbase_ex_post.hxx> #include <cppuhelper/implbase_ex_pre.hxx> -#include <cppuhelper/interfacecontainer.h> #include <cppuhelper/weak.hxx> -#include <cppuhelper/weakagg.hxx> #include <cppuhelper/weakref.hxx> #include <drawinglayer/drawinglayerdllapi.h> #include <drawinglayer/primitive2d/CommonTypes.hxx> #include <drawinglayer/primitive2d/Primitive2DContainer.hxx> #include <drawinglayer/primitive2d/Primitive2DVisitor.hxx> -#include <drawinglayer/primitive2d/baseprimitive2d.hxx> #include <editeng/autokernitem.hxx> #include <editeng/blinkitem.hxx> #include <editeng/boxitem.hxx> diff --git a/sw/inc/pch/precompiled_sw.hxx b/sw/inc/pch/precompiled_sw.hxx index ce0eed087dec..dbe04e9bc273 100644 --- a/sw/inc/pch/precompiled_sw.hxx +++ b/sw/inc/pch/precompiled_sw.hxx @@ -13,7 +13,7 @@ manual changes will be rewritten by the next run of update_pch.sh (which presumably also fixes all possible problems, so it's usually better to use it). - Generated on 2020-07-09 17:07:10 using: + Generated on 2020-08-12 11:06:39 using: ./bin/update_pch sw sw --cutoff=7 --exclude:system --exclude:module --include:local If after updating build fails, use the following command to locate conflicting headers: @@ -71,11 +71,11 @@ #include <rtl/ref.hxx> #include <rtl/strbuf.hxx> #include <rtl/string.h> +#include <rtl/string.hxx> #include <rtl/stringconcat.hxx> #include <rtl/stringutils.hxx> #include <rtl/tencinfo.h> #include <rtl/textenc.h> -#include <rtl/unload.h> #include <rtl/uri.hxx> #include <rtl/ustrbuf.hxx> #include <rtl/ustring.hxx> @@ -96,7 +96,6 @@ #include <vcl/commandevent.hxx> #include <vcl/ctrl.hxx> #include <vcl/dllapi.h> -#include <vcl/dockwin.hxx> #include <vcl/errcode.hxx> #include <vcl/errinf.hxx> #include <vcl/event.hxx> @@ -113,7 +112,6 @@ #include <vcl/outdev.hxx> #include <vcl/settings.hxx> #include <vcl/svapp.hxx> -#include <vcl/toolbox.hxx> #include <vcl/transfer.hxx> #include <vcl/vclenum.hxx> #include <vcl/vclptr.hxx> @@ -221,7 +219,6 @@ #include <cppuhelper/supportsservice.hxx> #include <cppuhelper/typeprovider.hxx> #include <drawinglayer/drawinglayerdllapi.h> -#include <drawinglayer/primitive2d/CommonTypes.hxx> #include <drawinglayer/primitive2d/Primitive2DContainer.hxx> #include <drawinglayer/primitive2d/baseprimitive2d.hxx> #include <drawinglayer/processor2d/baseprocessor2d.hxx> @@ -269,6 +266,7 @@ #include <editeng/tstpitem.hxx> #include <editeng/udlnitem.hxx> #include <editeng/ulspitem.hxx> +#include <editeng/unoprnms.hxx> #include <editeng/wghtitem.hxx> #include <editeng/widwitem.hxx> #include <editeng/xmlcnitm.hxx> @@ -284,6 +282,7 @@ #include <o3tl/strong_int.hxx> #include <o3tl/typed_flags_set.hxx> #include <o3tl/underlyingenumvalue.hxx> +#include <officecfg/Office/Common.hxx> #include <salhelper/salhelperdllapi.h> #include <salhelper/simplereferenceobject.hxx> #include <salhelper/singletonref.hxx> @@ -351,7 +350,6 @@ #include <svtools/htmlkywd.hxx> #include <svtools/htmlout.hxx> #include <svtools/htmltokn.h> -#include <svtools/popupwindowcontroller.hxx> #include <svtools/svtdllapi.h> #include <svx/dataaccessdescriptor.hxx> #include <svx/drawitem.hxx> @@ -441,6 +439,7 @@ #include <IDocumentLayoutAccess.hxx> #include <IDocumentLinksAdministration.hxx> #include <IDocumentMarkAccess.hxx> +#include <IDocumentOutlineNodes.hxx> #include <IDocumentRedlineAccess.hxx> #include <IDocumentSettingAccess.hxx> #include <IDocumentState.hxx> diff --git a/sw/inc/pch/precompiled_swui.hxx b/sw/inc/pch/precompiled_swui.hxx index be4dd7b9c1a4..c1f1c4450fab 100644 --- a/sw/inc/pch/precompiled_swui.hxx +++ b/sw/inc/pch/precompiled_swui.hxx @@ -13,7 +13,7 @@ manual changes will be rewritten by the next run of update_pch.sh (which presumably also fixes all possible problems, so it's usually better to use it). - Generated on 2020-07-09 17:07:17 using: + Generated on 2020-08-12 11:06:57 using: ./bin/update_pch sw swui --cutoff=3 --exclude:system --include:module --include:local If after updating build fails, use the following command to locate conflicting headers: @@ -112,7 +112,6 @@ #include <vcl/customweld.hxx> #include <vcl/devicecoordinate.hxx> #include <vcl/dllapi.h> -#include <vcl/dndhelp.hxx> #include <vcl/dockwin.hxx> #include <vcl/errcode.hxx> #include <vcl/event.hxx> @@ -332,7 +331,6 @@ #include <drawinglayer/primitive2d/CommonTypes.hxx> #include <drawinglayer/primitive2d/Primitive2DContainer.hxx> #include <drawinglayer/primitive2d/Primitive2DVisitor.hxx> -#include <drawinglayer/primitive2d/baseprimitive2d.hxx> #include <editeng/borderline.hxx> #include <editeng/boxitem.hxx> #include <editeng/brushitem.hxx> @@ -452,7 +450,6 @@ #include <svx/xdef.hxx> #include <svx/xgrad.hxx> #include <svx/xhatch.hxx> -#include <tools/UnitConversion.hxx> #include <tools/color.hxx> #include <tools/date.hxx> #include <tools/datetime.hxx> diff --git a/sw/inc/pch/precompiled_vbaswobj.hxx b/sw/inc/pch/precompiled_vbaswobj.hxx index c77d5a99938d..8123e74b8087 100644 --- a/sw/inc/pch/precompiled_vbaswobj.hxx +++ b/sw/inc/pch/precompiled_vbaswobj.hxx @@ -13,7 +13,7 @@ manual changes will be rewritten by the next run of update_pch.sh (which presumably also fixes all possible problems, so it's usually better to use it). - Generated on 2020-07-09 17:07:20 using: + Generated on 2020-08-12 11:07:07 using: ./bin/update_pch sw vbaswobj --cutoff=4 --exclude:system --include:module --include:local If after updating build fails, use the following command to locate conflicting headers: @@ -264,9 +264,9 @@ #include <svl/svldllapi.h> #include <svl/typedwhich.hxx> #include <svl/undo.hxx> +#include <svtools/svtdllapi.h> #include <svx/svxdllapi.h> #include <svx/xdef.hxx> -#include <tools/UnitConversion.hxx> #include <tools/color.hxx> #include <tools/date.hxx> #include <tools/datetime.hxx> diff --git a/toolkit/source/controls/tree/treecontrolpeer.cxx b/toolkit/source/controls/tree/treecontrolpeer.cxx index 00423e7a2a2f..bc5ceaad6d46 100644 --- a/toolkit/source/controls/tree/treecontrolpeer.cxx +++ b/toolkit/source/controls/tree/treecontrolpeer.cxx @@ -35,9 +35,9 @@ #include <rtl/ref.hxx> #include <vcl/graph.hxx> #include <vcl/svapp.hxx> -#include <vcl/treelistbox.hxx> -#include <vcl/treelistentry.hxx> -#include <vcl/viewdataentry.hxx> +#include <vcl/toolkit/treelistbox.hxx> +#include <vcl/toolkit/treelistentry.hxx> +#include <vcl/toolkit/viewdataentry.hxx> #include <vcl/toolkit/svlbitm.hxx> #include <map> diff --git a/unotools/inc/pch/precompiled_utl.hxx b/unotools/inc/pch/precompiled_utl.hxx index 9d68b52e29f0..f88d583a0f20 100644 --- a/unotools/inc/pch/precompiled_utl.hxx +++ b/unotools/inc/pch/precompiled_utl.hxx @@ -13,7 +13,7 @@ manual changes will be rewritten by the next run of update_pch.sh (which presumably also fixes all possible problems, so it's usually better to use it). - Generated on 2020-07-09 17:07:21 using: + Generated on 2020-08-12 11:07:07 using: ./bin/update_pch unotools utl --cutoff=3 --exclude:system --exclude:module --include:local If after updating build fails, use the following command to locate conflicting headers: @@ -25,10 +25,12 @@ #include <cassert> #include <cstddef> #include <memory> +#include <optional> #include <ostream> #include <stddef.h> #include <type_traits> #include <unordered_map> +#include <utility> #include <vector> #endif // PCH_LEVEL >= 1 #if PCH_LEVEL >= 2 @@ -99,13 +101,13 @@ #include <comphelper/processfactory.hxx> #include <comphelper/sequence.hxx> #include <cppu/cppudllapi.h> +#include <cppu/unotype.hxx> #include <cppuhelper/cppuhelperdllapi.h> #include <cppuhelper/implbase.hxx> #include <i18nlangtag/lang.h> #include <i18nlangtag/languagetag.hxx> #include <i18nlangtag/mslangid.hxx> #include <i18nutil/transliteration.hxx> -#include <o3tl/any.hxx> #include <o3tl/enumarray.hxx> #include <o3tl/safeint.hxx> #include <o3tl/typed_flags_set.hxx> diff --git a/uui/inc/pch/precompiled_uui.hxx b/uui/inc/pch/precompiled_uui.hxx index 34e174be6624..61655a7cf0e1 100644 --- a/uui/inc/pch/precompiled_uui.hxx +++ b/uui/inc/pch/precompiled_uui.hxx @@ -13,7 +13,7 @@ manual changes will be rewritten by the next run of update_pch.sh (which presumably also fixes all possible problems, so it's usually better to use it). - Generated on 2020-07-09 17:07:21 using: + Generated on 2020-08-12 11:16:21 using: ./bin/update_pch uui uui --cutoff=4 --exclude:system --exclude:module --exclude:local If after updating build fails, use the following command to locate conflicting headers: @@ -39,7 +39,6 @@ #include <rtl/textenc.h> #include <rtl/unload.h> #include <rtl/ustrbuf.hxx> -#include <rtl/ustring.h> #include <rtl/ustring.hxx> #include <sal/config.h> #include <sal/detail/log.h> diff --git a/vbahelper/inc/pch/precompiled_msforms.hxx b/vbahelper/inc/pch/precompiled_msforms.hxx index b78a88d5e719..12f32f04fb22 100644 --- a/vbahelper/inc/pch/precompiled_msforms.hxx +++ b/vbahelper/inc/pch/precompiled_msforms.hxx @@ -13,7 +13,7 @@ manual changes will be rewritten by the next run of update_pch.sh (which presumably also fixes all possible problems, so it's usually better to use it). - Generated on 2020-07-09 17:07:21 using: + Generated on 2020-08-12 11:07:08 using: ./bin/update_pch vbahelper msforms --cutoff=3 --exclude:system --include:module --include:local If after updating build fails, use the following command to locate conflicting headers: @@ -116,7 +116,6 @@ #include <com/sun/star/container/XNameContainer.hpp> #include <com/sun/star/drawing/LineCap.hpp> #include <com/sun/star/lang/IllegalArgumentException.hpp> -#include <com/sun/star/lang/XServiceInfo.hpp> #include <com/sun/star/uno/Any.h> #include <com/sun/star/uno/Any.hxx> #include <com/sun/star/uno/Reference.h> @@ -127,11 +126,9 @@ #include <com/sun/star/uno/Type.h> #include <com/sun/star/uno/Type.hxx> #include <com/sun/star/uno/TypeClass.hdl> -#include <com/sun/star/uno/XComponentContext.hpp> #include <com/sun/star/uno/XInterface.hpp> #include <com/sun/star/uno/genfunc.h> #include <com/sun/star/uno/genfunc.hxx> -#include <comphelper/comphelperdllapi.h> #include <comphelper/sequence.hxx> #include <cppu/cppudllapi.h> #include <cppu/unotype.hxx> @@ -145,7 +142,6 @@ #include <svl/hint.hxx> #include <svl/svldllapi.h> #include <svl/typedwhich.hxx> -#include <tools/UnitConversion.hxx> #include <tools/color.hxx> #include <tools/fontenum.hxx> #include <tools/gen.hxx> diff --git a/vcl/inc/iconview.hxx b/vcl/inc/iconview.hxx index 09d1a0b02fe7..f9b623688621 100644 --- a/vcl/inc/iconview.hxx +++ b/vcl/inc/iconview.hxx @@ -20,7 +20,7 @@ #ifndef INCLUDED_SVTOOLS_ICONVIEW_HXX #define INCLUDED_SVTOOLS_ICONVIEW_HXX -#include <vcl/treelistbox.hxx> +#include <vcl/toolkit/treelistbox.hxx> class IconView final : public SvTreeListBox { diff --git a/vcl/inc/pch/precompiled_vcl.hxx b/vcl/inc/pch/precompiled_vcl.hxx index 966e842b43bc..b6fa73b6d062 100644 --- a/vcl/inc/pch/precompiled_vcl.hxx +++ b/vcl/inc/pch/precompiled_vcl.hxx @@ -13,7 +13,7 @@ manual changes will be rewritten by the next run of update_pch.sh (which presumably also fixes all possible problems, so it's usually better to use it). - Generated on 2020-08-10 21:11:12 using: + Generated on 2020-08-12 11:16:23 using: ./bin/update_pch vcl vcl --cutoff=6 --exclude:system --include:module --include:local If after updating build fails, use the following command to locate conflicting headers: @@ -321,11 +321,12 @@ #include <vcl/toolkit/lstbox.hxx> #include <vcl/toolkit/spinfld.hxx> #include <vcl/toolkit/svlbitm.hxx> +#include <vcl/toolkit/treelist.hxx> +#include <vcl/toolkit/treelistentries.hxx> +#include <vcl/toolkit/treelistentry.hxx> #include <vcl/toolkit/unowrap.hxx> +#include <vcl/toolkit/viewdataentry.hxx> #include <vcl/transfer.hxx> -#include <vcl/treelist.hxx> -#include <vcl/treelistentries.hxx> -#include <vcl/treelistentry.hxx> #include <vcl/uitest/logger.hxx> #include <vcl/uitest/uiobject.hxx> #include <vcl/unohelp.hxx> @@ -333,7 +334,6 @@ #include <vcl/vclevent.hxx> #include <vcl/vclmedit.hxx> #include <vcl/vclptr.hxx> -#include <vcl/viewdataentry.hxx> #include <vcl/virdev.hxx> #include <vcl/weld.hxx> #include <vcl/window.hxx> diff --git a/vcl/inc/svimpbox.hxx b/vcl/inc/svimpbox.hxx index cb52069ca41b..02f8de6d8c72 100644 --- a/vcl/inc/svimpbox.hxx +++ b/vcl/inc/svimpbox.hxx @@ -27,7 +27,7 @@ #include <vcl/image.hxx> #include <vcl/svtaccessiblefactory.hxx> #include <vcl/vclevent.hxx> -#include <vcl/treelistbox.hxx> +#include <vcl/toolkit/treelistbox.hxx> #include <o3tl/enumarray.hxx> #include <memory> #include <vector> diff --git a/vcl/source/app/salvtables.cxx b/vcl/source/app/salvtables.cxx index 0c5d40fa45fa..2a138f1575a1 100644 --- a/vcl/source/app/salvtables.cxx +++ b/vcl/source/app/salvtables.cxx @@ -61,13 +61,13 @@ #include <vcl/toolkit/svtabbx.hxx> #include <vcl/tabctrl.hxx> #include <vcl/tabpage.hxx> -#include <vcl/treelistentry.hxx> +#include <vcl/toolkit/treelistentry.hxx> #include <vcl/toolkit/throbber.hxx> #include <vcl/toolkit/unowrap.hxx> #include <vcl/weld.hxx> #include <vcl/weldutils.hxx> #include <vcl/vclmedit.hxx> -#include <vcl/viewdataentry.hxx> +#include <vcl/toolkit/viewdataentry.hxx> #include <vcl/virdev.hxx> #include <bitmaps.hlst> #include <calendar.hxx> diff --git a/vcl/source/treelist/iconview.cxx b/vcl/source/treelist/iconview.cxx index 162096bff04c..9e0ab737b2c3 100644 --- a/vcl/source/treelist/iconview.cxx +++ b/vcl/source/treelist/iconview.cxx @@ -17,8 +17,8 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ -#include <vcl/treelistentry.hxx> -#include <vcl/viewdataentry.hxx> +#include <vcl/toolkit/treelistentry.hxx> +#include <vcl/toolkit/viewdataentry.hxx> #include <iconview.hxx> #include "iconviewimpl.hxx" diff --git a/vcl/source/treelist/svimpbox.cxx b/vcl/source/treelist/svimpbox.cxx index ac8f4cfeb621..e8bd4da9ca0c 100644 --- a/vcl/source/treelist/svimpbox.cxx +++ b/vcl/source/treelist/svimpbox.cxx @@ -30,7 +30,7 @@ #include <memory> #include <stack> -#include <vcl/treelistbox.hxx> +#include <vcl/toolkit/treelistbox.hxx> #include <vcl/toolkit/svlbitm.hxx> #include <tools/wintypes.hxx> #include <bitmaps.hlst> @@ -40,8 +40,8 @@ #include <i18nlangtag/languagetag.hxx> #include <tools/debug.hxx> -#include <vcl/treelistentry.hxx> -#include <vcl/viewdataentry.hxx> +#include <vcl/toolkit/treelistentry.hxx> +#include <vcl/toolkit/viewdataentry.hxx> // #i27063# (pl), #i32300# (pb) never access VCL after DeInitVCL - also no destructors Image* SvImpLBox::s_pDefCollapsed = nullptr; diff --git a/vcl/source/treelist/svlbitm.cxx b/vcl/source/treelist/svlbitm.cxx index 8b072424d072..87a32e9612a9 100644 --- a/vcl/source/treelist/svlbitm.cxx +++ b/vcl/source/treelist/svlbitm.cxx @@ -17,10 +17,10 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ -#include <vcl/treelistbox.hxx> +#include <vcl/toolkit/treelistbox.hxx> #include <vcl/toolkit/svlbitm.hxx> -#include <vcl/treelistentry.hxx> -#include <vcl/viewdataentry.hxx> +#include <vcl/toolkit/treelistentry.hxx> +#include <vcl/toolkit/viewdataentry.hxx> #include <vcl/svapp.hxx> #include <vcl/toolkit/button.hxx> #include <vcl/decoview.hxx> diff --git a/vcl/source/treelist/svtabbx.cxx b/vcl/source/treelist/svtabbx.cxx index 9e712c70c827..2504cf2e1fd6 100644 --- a/vcl/source/treelist/svtabbx.cxx +++ b/vcl/source/treelist/svtabbx.cxx @@ -22,7 +22,7 @@ #include <vcl/toolkit/svtabbx.hxx> #include <vcl/headbar.hxx> #include <vcl/toolkit/svlbitm.hxx> -#include <vcl/treelistentry.hxx> +#include <vcl/toolkit/treelistentry.hxx> #include <unotools/accessiblestatesethelper.hxx> #include <com/sun/star/accessibility/AccessibleStateType.hpp> #include <rtl/ustrbuf.hxx> diff --git a/vcl/source/treelist/treelist.cxx b/vcl/source/treelist/treelist.cxx index c9d6c264eaaf..537cf2a5429c 100644 --- a/vcl/source/treelist/treelist.cxx +++ b/vcl/source/treelist/treelist.cxx @@ -17,9 +17,9 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ -#include <vcl/treelist.hxx> -#include <vcl/treelistentry.hxx> -#include <vcl/viewdataentry.hxx> +#include <vcl/toolkit/treelist.hxx> +#include <vcl/toolkit/treelistentry.hxx> +#include <vcl/toolkit/viewdataentry.hxx> #include <tools/debug.hxx> #include <osl/diagnose.h> diff --git a/vcl/source/treelist/treelistbox.cxx b/vcl/source/treelist/treelistbox.cxx index c2a15925f125..74be3d890402 100644 --- a/vcl/source/treelist/treelistbox.cxx +++ b/vcl/source/treelist/treelistbox.cxx @@ -23,7 +23,7 @@ - SelectAll( false ) => only repaint the deselected entries */ -#include <vcl/treelistbox.hxx> +#include <vcl/toolkit/treelistbox.hxx> #include <vcl/accessiblefactory.hxx> #include <com/sun/star/accessibility/AccessibleStateType.hpp> #include <vcl/svapp.hxx> @@ -41,8 +41,8 @@ #include <tools/debug.hxx> #include <vcl/toolkit/svlbitm.hxx> -#include <vcl/treelistentry.hxx> -#include <vcl/viewdataentry.hxx> +#include <vcl/toolkit/treelistentry.hxx> +#include <vcl/toolkit/viewdataentry.hxx> #include <svimpbox.hxx> #include <set> diff --git a/vcl/source/treelist/treelistentry.cxx b/vcl/source/treelist/treelistentry.cxx index 5ffd4428b758..46f95aad2f15 100644 --- a/vcl/source/treelist/treelistentry.cxx +++ b/vcl/source/treelist/treelistentry.cxx @@ -18,7 +18,7 @@ */ #include <memory> -#include <vcl/treelistentry.hxx> +#include <vcl/toolkit/treelistentry.hxx> #include <vcl/svapp.hxx> #include <vcl/settings.hxx> #include <tools/debug.hxx> diff --git a/vcl/source/treelist/uiobject.cxx b/vcl/source/treelist/uiobject.cxx index 9256321688dd..1c9146c51101 100644 --- a/vcl/source/treelist/uiobject.cxx +++ b/vcl/source/treelist/uiobject.cxx @@ -10,8 +10,8 @@ #include <memory> #include <vcl/toolkit/svlbitm.hxx> #include <vcl/uitest/uiobject.hxx> -#include <vcl/treelistbox.hxx> -#include <vcl/treelistentry.hxx> +#include <vcl/toolkit/treelistbox.hxx> +#include <vcl/toolkit/treelistentry.hxx> TreeListUIObject::TreeListUIObject(const VclPtr<SvTreeListBox>& xTreeList): WindowUIObject(xTreeList), diff --git a/vcl/source/treelist/viewdataentry.cxx b/vcl/source/treelist/viewdataentry.cxx index f5fbf8e0bdfb..b14d479310af 100644 --- a/vcl/source/treelist/viewdataentry.cxx +++ b/vcl/source/treelist/viewdataentry.cxx @@ -17,7 +17,7 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ -#include <vcl/viewdataentry.hxx> +#include <vcl/toolkit/viewdataentry.hxx> SvViewDataEntry::SvViewDataEntry() : nVisPos(0), diff --git a/vcl/source/window/builder.cxx b/vcl/source/window/builder.cxx index 2d27f27e9f1a..b7e77efb7c17 100644 --- a/vcl/source/window/builder.cxx +++ b/vcl/source/window/builder.cxx @@ -46,7 +46,7 @@ #include <vcl/tabpage.hxx> #include <vcl/toolkit/throbber.hxx> #include <vcl/toolbox.hxx> -#include <vcl/treelistentry.hxx> +#include <vcl/toolkit/treelistentry.hxx> #include <vcl/vclmedit.hxx> #include <vcl/settings.hxx> #include <slider.hxx> diff --git a/writerfilter/inc/pch/precompiled_writerfilter.hxx b/writerfilter/inc/pch/precompiled_writerfilter.hxx index 0e5fe2b19941..748bf481264e 100644 --- a/writerfilter/inc/pch/precompiled_writerfilter.hxx +++ b/writerfilter/inc/pch/precompiled_writerfilter.hxx @@ -13,7 +13,7 @@ manual changes will be rewritten by the next run of update_pch.sh (which presumably also fixes all possible problems, so it's usually better to use it). - Generated on 2020-07-09 17:07:23 using: + Generated on 2020-08-12 11:16:23 using: ./bin/update_pch writerfilter writerfilter --cutoff=5 --exclude:system --exclude:module --exclude:local If after updating build fails, use the following command to locate conflicting headers: @@ -44,10 +44,7 @@ #include <rtl/locale.h> #include <rtl/math.hxx> #include <rtl/ref.hxx> -#include <rtl/strbuf.h> #include <rtl/string.hxx> -#include <rtl/stringconcat.hxx> -#include <rtl/stringutils.hxx> #include <rtl/tencinfo.h> #include <rtl/textenc.h> #include <rtl/uri.hxx> @@ -84,6 +81,7 @@ #include <com/sun/star/uno/XInterface.hpp> #include <com/sun/star/uno/genfunc.hxx> #include <comphelper/propertysequence.hxx> +#include <comphelper/propertyvalue.hxx> #include <comphelper/sequence.hxx> #include <comphelper/sequenceashashmap.hxx> #include <comphelper/string.hxx> diff --git a/xmloff/inc/pch/precompiled_xo.hxx b/xmloff/inc/pch/precompiled_xo.hxx index 3ea9b4cdedd7..5b9ab966634a 100644 --- a/xmloff/inc/pch/precompiled_xo.hxx +++ b/xmloff/inc/pch/precompiled_xo.hxx @@ -13,7 +13,7 @@ manual changes will be rewritten by the next run of update_pch.sh (which presumably also fixes all possible problems, so it's usually better to use it). - Generated on 2020-07-09 17:07:24 using: + Generated on 2020-08-12 11:07:14 using: ./bin/update_pch xmloff xo --cutoff=7 --exclude:system --include:module --include:local If after updating build fails, use the following command to locate conflicting headers: @@ -57,6 +57,7 @@ #include <osl/thread.h> #include <rtl/alloc.h> #include <rtl/character.hxx> +#include <rtl/digest.h> #include <rtl/instance.hxx> #include <rtl/locale.h> #include <rtl/math.h> @@ -179,7 +180,6 @@ #include <salhelper/simplereferenceobject.hxx> #include <sax/tools/converter.hxx> #include <svl/svldllapi.h> -#include <tools/UnitConversion.hxx> #include <tools/color.hxx> #include <tools/debug.hxx> #include <tools/diagnose_ex.h> diff --git a/xmlsecurity/inc/pch/precompiled_xmlsecurity.hxx b/xmlsecurity/inc/pch/precompiled_xmlsecurity.hxx index bd4228ede2e3..a64c79903a2c 100644 --- a/xmlsecurity/inc/pch/precompiled_xmlsecurity.hxx +++ b/xmlsecurity/inc/pch/precompiled_xmlsecurity.hxx @@ -13,7 +13,7 @@ manual changes will be rewritten by the next run of update_pch.sh (which presumably also fixes all possible problems, so it's usually better to use it). - Generated on 2020-07-09 17:07:25 using: + Generated on 2020-08-12 11:07:16 using: ./bin/update_pch xmlsecurity xmlsecurity --cutoff=6 --exclude:system --include:module --include:local If after updating build fails, use the following command to locate conflicting headers: @@ -138,7 +138,6 @@ #include <com/sun/star/uno/genfunc.hxx> #include <com/sun/star/util/Date.hpp> #include <com/sun/star/util/DateTime.hpp> -#include <com/sun/star/util/Time.hpp> #include <com/sun/star/xml/crypto/DigestID.hpp> #include <com/sun/star/xml/crypto/SecurityOperationStatus.hpp> #include <com/sun/star/xml/crypto/XXMLSignature.hpp> @@ -159,7 +158,6 @@ #include <o3tl/typed_flags_set.hxx> #include <o3tl/underlyingenumvalue.hxx> #include <svl/sigstruct.hxx> -#include <tools/UnitConversion.hxx> #include <tools/color.hxx> #include <tools/date.hxx> #include <tools/fldunit.hxx> @@ -168,7 +166,6 @@ #include <tools/link.hxx> #include <tools/mapunit.hxx> #include <tools/solar.h> -#include <tools/time.hxx> #include <tools/toolsdllapi.h> #include <typelib/typeclass.h> #include <typelib/typedescription.h> diff --git a/xmlsecurity/inc/pch/precompiled_xsec_xmlsec.hxx b/xmlsecurity/inc/pch/precompiled_xsec_xmlsec.hxx index f6f7e3b7cd2b..671a7053a6c7 100644 --- a/xmlsecurity/inc/pch/precompiled_xsec_xmlsec.hxx +++ b/xmlsecurity/inc/pch/precompiled_xsec_xmlsec.hxx @@ -13,7 +13,7 @@ manual changes will be rewritten by the next run of update_pch.sh (which presumably also fixes all possible problems, so it's usually better to use it). - Generated on 2020-07-09 17:07:25 using: + Generated on 2020-08-12 11:16:25 using: ./bin/update_pch xmlsecurity xsec_xmlsec --cutoff=2 --exclude:system --include:module --include:local If after updating build fails, use the following command to locate conflicting headers: |