summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorMohamed Ali <mohmedali1462005@gmail.com>2025-02-18 15:15:30 +0200
committerHossein <hossein@libreoffice.org>2025-02-27 08:51:31 +0100
commit47372b4650cb3a214ccf8f0947e1e652a5516793 (patch)
treeb9f809d0d1251d04130c5a81be0ce0c49d1b759b /include
parent5440abe0520404709b62679041fb2f3681e6ae6f (diff)
tdf#97228 Move include file BitmapDuoToneFilter.hxx to vcl/inc/
Change-Id: I0cbe932889c56b63fa463e50d92605fafaf0907b Reviewed-on: https://gerrit.libreoffice.org/c/core/+/181837 Tested-by: Jenkins Reviewed-by: Hossein <hossein@libreoffice.org>
Diffstat (limited to 'include')
-rw-r--r--include/vcl/bitmap/BitmapDuoToneFilter.hxx31
1 files changed, 0 insertions, 31 deletions
diff --git a/include/vcl/bitmap/BitmapDuoToneFilter.hxx b/include/vcl/bitmap/BitmapDuoToneFilter.hxx
deleted file mode 100644
index 4a8c5d1c5d91..000000000000
--- a/include/vcl/bitmap/BitmapDuoToneFilter.hxx
+++ /dev/null
@@ -1,31 +0,0 @@
-/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
-/*
- * This file is part of the LibreOffice project.
- *
- * This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/.
- *
- */
-
-#pragma once
-
-#include <vcl/bitmap/BitmapFilter.hxx>
-
-class BitmapDuoToneFilter final : public BitmapFilter
-{
-public:
- BitmapDuoToneFilter(Color nColorOne, Color nColorTwo)
- : mnColorOne(nColorOne)
- , mnColorTwo(nColorTwo)
- {
- }
-
- virtual BitmapEx execute(BitmapEx const& rBitmapEx) const override;
-
-private:
- Color mnColorOne;
- Color mnColorTwo;
-};
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */