diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2022-03-10 14:41:47 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2022-03-11 09:06:06 +0100 |
commit | 7002caa97e10d29353d3490b4fbb782d436575b3 (patch) | |
tree | 98c254c9f94272e145417034f5cdc85b942edf74 /include/svx | |
parent | a370e7ff7e8225b8343678401eca5a1721b2b9bb (diff) |
new loplugin:trivialdestructor
look for potentially trivial destructors that can then be elided
Change-Id: I435c251bd4291b5864c20d68f88676faac7c43fb
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/131318
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/svx')
-rw-r--r-- | include/svx/colorwindow.hxx | 1 | ||||
-rw-r--r-- | include/svx/dlgctl3d.hxx | 1 | ||||
-rw-r--r-- | include/svx/fmobjfac.hxx | 1 | ||||
-rw-r--r-- | include/svx/objfac3d.hxx | 1 | ||||
-rw-r--r-- | include/svx/svdview.hxx | 1 |
5 files changed, 0 insertions, 5 deletions
diff --git a/include/svx/colorwindow.hxx b/include/svx/colorwindow.hxx index 2fc23adde44d..823c819f0e2c 100644 --- a/include/svx/colorwindow.hxx +++ b/include/svx/colorwindow.hxx @@ -39,7 +39,6 @@ class SVXCORE_DLLPUBLIC ColorStatus Color maBLTRColor; public: ColorStatus(); - ~ColorStatus(); void statusChanged( const css::frame::FeatureStateEvent& rEvent ); Color GetColor(); }; diff --git a/include/svx/dlgctl3d.hxx b/include/svx/dlgctl3d.hxx index d5d75e72dc62..afa246b1601a 100644 --- a/include/svx/dlgctl3d.hxx +++ b/include/svx/dlgctl3d.hxx @@ -151,7 +151,6 @@ class SAL_WARN_UNUSED SVX_DLLPUBLIC SvxLightCtl3D public: SvxLightCtl3D(Svx3DLightControl& rLightControl, weld::Scale& rHori, weld::Scale& rVert, weld::Button& rButton); - ~SvxLightCtl3D(); // check the selection for validity void CheckSelection(); diff --git a/include/svx/fmobjfac.hxx b/include/svx/fmobjfac.hxx index 188ff895d8f7..f165cf7b2247 100644 --- a/include/svx/fmobjfac.hxx +++ b/include/svx/fmobjfac.hxx @@ -30,7 +30,6 @@ class SVX_DLLPUBLIC FmFormObjFactory { public: FmFormObjFactory(); - ~FmFormObjFactory(); DECL_DLLPRIVATE_STATIC_LINK(FmFormObjFactory, MakeObject, SdrObjCreatorParams, SdrObject*); }; diff --git a/include/svx/objfac3d.hxx b/include/svx/objfac3d.hxx index 75201a554573..24b14de5a46b 100644 --- a/include/svx/objfac3d.hxx +++ b/include/svx/objfac3d.hxx @@ -36,7 +36,6 @@ class SVXCORE_DLLPUBLIC E3dObjFactory { public: E3dObjFactory(); - ~E3dObjFactory(); DECL_DLLPRIVATE_STATIC_LINK(E3dObjFactory, MakeObject, SdrObjCreatorParams, SdrObject*); }; diff --git a/include/svx/svdview.hxx b/include/svx/svdview.hxx index 83c780b431ec..166990985830 100644 --- a/include/svx/svdview.hxx +++ b/include/svx/svdview.hxx @@ -123,7 +123,6 @@ struct SVXCORE_DLLPUBLIC SdrViewEvent public: SdrViewEvent(); - ~SdrViewEvent(); }; // helper class for all D&D overlays |