vcl/source/bitmap/BitmapDuoToneFilter.cxx | 3 ++- vcl/source/graphic/UnoGraphic.cxx | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-)
New commits: commit 27d027e5704d15639b4b06653a1ee68e8d1c5b0b Author: Christopher Sherlock <chris.sherloc...@gmail.com> AuthorDate: Sun Mar 2 03:23:04 2025 +1100 Commit: Hossein <hoss...@libreoffice.org> CommitDate: Sat Mar 1 21:26:58 2025 +0100 tdf#97228 move include file BitmapDuoToneFilter to vcl/inc/bitmap Followup to commit 47272b465 - file was moved to vcl/inc but should have been moved to vcl/inc/bitmap Change-Id: Iaff0a5095f6826b52fc51a5f62d98276e37cc348 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/182392 Reviewed-by: Hossein <hoss...@libreoffice.org> Tested-by: Jenkins diff --git a/vcl/inc/BitmapDuoToneFilter.hxx b/vcl/inc/bitmap/BitmapDuoToneFilter.hxx similarity index 100% rename from vcl/inc/BitmapDuoToneFilter.hxx rename to vcl/inc/bitmap/BitmapDuoToneFilter.hxx diff --git a/vcl/source/bitmap/BitmapDuoToneFilter.cxx b/vcl/source/bitmap/BitmapDuoToneFilter.cxx index 3120d375d1c5..7e7a5c0bb82f 100644 --- a/vcl/source/bitmap/BitmapDuoToneFilter.cxx +++ b/vcl/source/bitmap/BitmapDuoToneFilter.cxx @@ -8,9 +8,10 @@ * */ -#include <BitmapDuoToneFilter.hxx> #include <vcl/BitmapWriteAccess.hxx> +#include <bitmap/BitmapDuoToneFilter.hxx> + static sal_uInt8 lcl_getDuotoneColorComponent(sal_uInt8 base, sal_uInt16 color1, sal_uInt16 color2) { color2 = color2 * base / 0xFF; diff --git a/vcl/source/graphic/UnoGraphic.cxx b/vcl/source/graphic/UnoGraphic.cxx index 8afdcc11781c..7e1f1234790a 100644 --- a/vcl/source/graphic/UnoGraphic.cxx +++ b/vcl/source/graphic/UnoGraphic.cxx @@ -26,12 +26,13 @@ #include <vcl/dibtools.hxx> #include <vcl/graph.hxx> #include <vcl/BitmapColor.hxx> -#include <BitmapDuoToneFilter.hxx> #include <comphelper/servicehelper.hxx> #include <cppuhelper/supportsservice.hxx> #include <cppuhelper/queryinterface.hxx> #include <cppuhelper/typeprovider.hxx> +#include <bitmap/BitmapDuoToneFilter.hxx> + using namespace com::sun::star; namespace unographic {