summaryrefslogtreecommitdiff
path: root/include/vcl
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2024-07-08 12:34:55 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2024-07-09 15:19:44 +0200
commit44f42499e20895cce8a3a4defc21b0613cc80bfd (patch)
tree8e0c8915f8a4ab2a3cc6703de85bee2c65838f3d /include/vcl
parent4f1b91a2bb7af2823c7c1dc9a30a0e822aa902cc (diff)
loplugin:unnecessaryvirtual
Change-Id: Ibacb8bd52f5a9838540a68d238c3ed76eff6571b Reviewed-on: https://gerrit.libreoffice.org/c/core/+/170184 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/vcl')
-rw-r--r--include/vcl/BitmapArithmeticBlendFilter.hxx2
-rw-r--r--include/vcl/BitmapDarkenBlendFilter.hxx2
-rw-r--r--include/vcl/BitmapLightenBlendFilter.hxx2
-rw-r--r--include/vcl/BitmapMultiplyBlendFilter.hxx2
-rw-r--r--include/vcl/BitmapNormalBlendFilter.hxx2
-rw-r--r--include/vcl/BitmapScreenBlendFilter.hxx2
6 files changed, 6 insertions, 6 deletions
diff --git a/include/vcl/BitmapArithmeticBlendFilter.hxx b/include/vcl/BitmapArithmeticBlendFilter.hxx
index a2de3ae28c19..6f936c0822bc 100644
--- a/include/vcl/BitmapArithmeticBlendFilter.hxx
+++ b/include/vcl/BitmapArithmeticBlendFilter.hxx
@@ -21,7 +21,7 @@ private:
public:
BitmapArithmeticBlendFilter(BitmapEx const& rBmpEx, BitmapEx const& rBmpEx2);
- virtual ~BitmapArithmeticBlendFilter();
+ ~BitmapArithmeticBlendFilter();
BitmapEx execute(double aK1, double aK2, double aK3, double aK4);
};
diff --git a/include/vcl/BitmapDarkenBlendFilter.hxx b/include/vcl/BitmapDarkenBlendFilter.hxx
index ea017e13e0fa..d8379d12fa45 100644
--- a/include/vcl/BitmapDarkenBlendFilter.hxx
+++ b/include/vcl/BitmapDarkenBlendFilter.hxx
@@ -22,7 +22,7 @@ private:
public:
BitmapDarkenBlendFilter(BitmapEx const& rBmpEx, BitmapEx const& rBmpEx2);
- virtual ~BitmapDarkenBlendFilter();
+ ~BitmapDarkenBlendFilter();
BitmapEx execute();
};
#endif
diff --git a/include/vcl/BitmapLightenBlendFilter.hxx b/include/vcl/BitmapLightenBlendFilter.hxx
index e17a34dc8efd..dc44ae24dbbb 100644
--- a/include/vcl/BitmapLightenBlendFilter.hxx
+++ b/include/vcl/BitmapLightenBlendFilter.hxx
@@ -22,7 +22,7 @@ private:
public:
BitmapLightenBlendFilter(BitmapEx const& rBmpEx, BitmapEx const& rBmpEx2);
- virtual ~BitmapLightenBlendFilter();
+ ~BitmapLightenBlendFilter();
BitmapEx execute();
};
#endif
diff --git a/include/vcl/BitmapMultiplyBlendFilter.hxx b/include/vcl/BitmapMultiplyBlendFilter.hxx
index 4c71470eaadd..e720b8a6670e 100644
--- a/include/vcl/BitmapMultiplyBlendFilter.hxx
+++ b/include/vcl/BitmapMultiplyBlendFilter.hxx
@@ -22,7 +22,7 @@ private:
public:
BitmapMultiplyBlendFilter(BitmapEx const& rBmpEx, BitmapEx const& rBmpEx2);
- virtual ~BitmapMultiplyBlendFilter();
+ ~BitmapMultiplyBlendFilter();
BitmapEx execute();
};
#endif
diff --git a/include/vcl/BitmapNormalBlendFilter.hxx b/include/vcl/BitmapNormalBlendFilter.hxx
index f89ea848d5cc..b7d3919baf33 100644
--- a/include/vcl/BitmapNormalBlendFilter.hxx
+++ b/include/vcl/BitmapNormalBlendFilter.hxx
@@ -22,7 +22,7 @@ private:
public:
BitmapNormalBlendFilter(BitmapEx const& rBmpEx, BitmapEx const& rBmpEx2);
- virtual ~BitmapNormalBlendFilter();
+ ~BitmapNormalBlendFilter();
BitmapEx execute();
};
#endif
diff --git a/include/vcl/BitmapScreenBlendFilter.hxx b/include/vcl/BitmapScreenBlendFilter.hxx
index a8f816936f49..6278bd130363 100644
--- a/include/vcl/BitmapScreenBlendFilter.hxx
+++ b/include/vcl/BitmapScreenBlendFilter.hxx
@@ -22,7 +22,7 @@ private:
public:
BitmapScreenBlendFilter(BitmapEx const& rBmpEx, BitmapEx const& rBmpEx2);
- virtual ~BitmapScreenBlendFilter();
+ ~BitmapScreenBlendFilter();
BitmapEx execute();
};
#endif