summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2022-09-08 12:01:12 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2022-09-08 15:26:54 +0200
commit1bc633f6b1e4ccee7e9911aa09a6d4e3e5b5d6e4 (patch)
treedfd2cee44d69b40048ac2b5b1b7aeb2f992a10d3 /include
parent7d222e26c9a4bde2f7a410a739e6546e193039dc (diff)
loplugin:unnecessaryvirtual
Change-Id: I4461ca826960b194cf45ae4917093f3273b3b0a2 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/139643 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include')
-rw-r--r--include/vcl/filter/PngImageWriter.hxx2
-rw-r--r--include/vcl/toolkit/scrbar.hxx4
2 files changed, 2 insertions, 4 deletions
diff --git a/include/vcl/filter/PngImageWriter.hxx b/include/vcl/filter/PngImageWriter.hxx
index c788f19bf4db..db34e0826136 100644
--- a/include/vcl/filter/PngImageWriter.hxx
+++ b/include/vcl/filter/PngImageWriter.hxx
@@ -38,8 +38,6 @@ class VCL_DLLPUBLIC PngImageWriter
public:
PngImageWriter(SvStream& rStream);
- virtual ~PngImageWriter() = default;
-
void setParameters(css::uno::Sequence<css::beans::PropertyValue> const& rParameters);
bool write(const BitmapEx& rBitmap);
};
diff --git a/include/vcl/toolkit/scrbar.hxx b/include/vcl/toolkit/scrbar.hxx
index 32704522bbaf..4844b58cd3cb 100644
--- a/include/vcl/toolkit/scrbar.hxx
+++ b/include/vcl/toolkit/scrbar.hxx
@@ -99,8 +99,8 @@ public:
virtual void ApplySettings(vcl::RenderContext& rRenderContext) override;
using Window::Scroll;
- void Scroll();
- virtual void EndScroll();
+ void Scroll();
+ void EndScroll();
tools::Long DoScroll( tools::Long nNewPos ) override;
tools::Long DoScrollAction( ScrollType eScrollType );