diff options
author | Chris Sherlock <chris.sherlock79@gmail.com> | 2024-09-15 00:02:10 +1000 |
---|---|---|
committer | Tomaž Vajngerl <quikee@gmail.com> | 2024-10-21 09:45:21 +0200 |
commit | bc2ff9daf5d20bc9b8f260ffc59e820a1aa08772 (patch) | |
tree | 7b0ed0b62ec3fbc1d95890ae44184f4b854c4280 /canvas/inc | |
parent | eb37b2eb143815f17afbea6dfc344927f7b96e92 (diff) |
vcl: move bitmap filter headers into vcl/bitmap global header directory
Use #pragma once instead of header guards
Change-Id: Iba43f2103628ed184933cf2611991e7aef9f0173
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/173369
Reviewed-by: Tomaž Vajngerl <quikee@gmail.com>
Tested-by: Jenkins
Diffstat (limited to 'canvas/inc')
-rw-r--r-- | canvas/inc/pch/precompiled_vclcanvas.hxx | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/canvas/inc/pch/precompiled_vclcanvas.hxx b/canvas/inc/pch/precompiled_vclcanvas.hxx index 03c547f2c7b3..d16ad18f0a3e 100644 --- a/canvas/inc/pch/precompiled_vclcanvas.hxx +++ b/canvas/inc/pch/precompiled_vclcanvas.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 2021-03-08 13:11:36 using: + Generated on 2024-10-12 02:56:17 using: ./bin/update_pch canvas vclcanvas --cutoff=1 --exclude:system --include:module --include:local If after updating build fails, use the following command to locate conflicting headers: @@ -25,22 +25,22 @@ #include <cstdlib> #include <memory> #include <tuple> +#include <utility> #include <boost/cast.hpp> #endif // PCH_LEVEL >= 1 #if PCH_LEVEL >= 2 #include <osl/diagnose.h> -#include <rtl/instance.hxx> #include <rtl/math.hxx> #include <sal/log.hxx> -#include <vcl/BitmapAlphaClampFilter.hxx> -#include <vcl/BitmapMonochromeFilter.hxx> #include <vcl/BitmapReadAccess.hxx> #include <vcl/BitmapTools.hxx> #include <vcl/alpha.hxx> +#include <vcl/bitmap/BitmapAlphaClampFilter.hxx> #include <vcl/bitmapex.hxx> #include <vcl/canvastools.hxx> #include <vcl/dibtools.hxx> #include <vcl/gradient.hxx> +#include <vcl/kernarray.hxx> #include <vcl/metric.hxx> #include <vcl/outdev.hxx> #include <vcl/skia/SkiaHelper.hxx> @@ -76,12 +76,11 @@ #include <com/sun/star/rendering/TexturingMode.hpp> #include <com/sun/star/rendering/ViewState.hpp> #include <com/sun/star/rendering/XCanvas.hpp> +#include <comphelper/diagnose_ex.hxx> #include <comphelper/sequence.hxx> #include <cppuhelper/supportsservice.hxx> #include <i18nlangtag/languagetag.hxx> #include <toolkit/helper/vclunohelper.hxx> -#include <comphelper/diagnose_ex.hxx> -#include <tools/long.hxx> #include <tools/poly.hxx> #include <tools/stream.hxx> #endif // PCH_LEVEL >= 3 |