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/xmloff | |
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/xmloff')
-rw-r--r-- | include/xmloff/DashStyle.hxx | 2 | ||||
-rw-r--r-- | include/xmloff/GradientStyle.hxx | 2 | ||||
-rw-r--r-- | include/xmloff/HatchStyle.hxx | 2 | ||||
-rw-r--r-- | include/xmloff/MarkerStyle.hxx | 2 | ||||
-rw-r--r-- | include/xmloff/xmlnume.hxx | 1 |
5 files changed, 0 insertions, 9 deletions
diff --git a/include/xmloff/DashStyle.hxx b/include/xmloff/DashStyle.hxx index da31f66c0af9..c27234124556 100644 --- a/include/xmloff/DashStyle.hxx +++ b/include/xmloff/DashStyle.hxx @@ -38,7 +38,6 @@ class XMLOFF_DLLPUBLIC XMLDashStyleImport public: XMLDashStyleImport( SvXMLImport& rImport ); - ~XMLDashStyleImport(); void importXML( const css::uno::Reference< css::xml::sax::XFastAttributeList >& xAttrList, @@ -53,7 +52,6 @@ class XMLOFF_DLLPUBLIC XMLDashStyleExport public: XMLDashStyleExport( SvXMLExport& rExport ); - ~XMLDashStyleExport(); void exportXML( const OUString& rStrName, const css::uno::Any& rValue ); diff --git a/include/xmloff/GradientStyle.hxx b/include/xmloff/GradientStyle.hxx index 8c4c4c686cd3..db946279a238 100644 --- a/include/xmloff/GradientStyle.hxx +++ b/include/xmloff/GradientStyle.hxx @@ -39,7 +39,6 @@ class XMLOFF_DLLPUBLIC XMLGradientStyleImport public: XMLGradientStyleImport( SvXMLImport& rImport ); - ~XMLGradientStyleImport(); void importXML( const css::uno::Reference< css::xml::sax::XFastAttributeList >& xAttrList, @@ -54,7 +53,6 @@ class XMLOFF_DLLPUBLIC XMLGradientStyleExport public: XMLGradientStyleExport( SvXMLExport& rExport ); - ~XMLGradientStyleExport(); void exportXML( const OUString& rStrName, diff --git a/include/xmloff/HatchStyle.hxx b/include/xmloff/HatchStyle.hxx index 76e9ae621aa1..9ded654e53e2 100644 --- a/include/xmloff/HatchStyle.hxx +++ b/include/xmloff/HatchStyle.hxx @@ -39,7 +39,6 @@ class XMLOFF_DLLPUBLIC XMLHatchStyleImport public: XMLHatchStyleImport( SvXMLImport& rImport ); - ~XMLHatchStyleImport(); void importXML( const css::uno::Reference< css::xml::sax::XFastAttributeList>& xAttrList, @@ -53,7 +52,6 @@ class XMLOFF_DLLPUBLIC XMLHatchStyleExport public: XMLHatchStyleExport( SvXMLExport& rExport ); - ~XMLHatchStyleExport(); void exportXML( const OUString& rStrName, const css::uno::Any& rValue ); }; diff --git a/include/xmloff/MarkerStyle.hxx b/include/xmloff/MarkerStyle.hxx index 33b39a6bd199..ce1ae3080a00 100644 --- a/include/xmloff/MarkerStyle.hxx +++ b/include/xmloff/MarkerStyle.hxx @@ -39,7 +39,6 @@ class XMLOFF_DLLPUBLIC XMLMarkerStyleImport public: XMLMarkerStyleImport( SvXMLImport& rImport ); - ~XMLMarkerStyleImport(); void importXML( const css::uno::Reference< css::xml::sax::XFastAttributeList >& xAttrList, @@ -53,7 +52,6 @@ class XMLOFF_DLLPUBLIC XMLMarkerStyleExport public: XMLMarkerStyleExport( SvXMLExport& rExport ); - ~XMLMarkerStyleExport(); void exportXML( const OUString& rStrName, diff --git a/include/xmloff/xmlnume.hxx b/include/xmloff/xmlnume.hxx index 683d3025d4dd..68818f1076ff 100644 --- a/include/xmloff/xmlnume.hxx +++ b/include/xmloff/xmlnume.hxx @@ -57,7 +57,6 @@ class XMLOFF_DLLPUBLIC SvxXMLNumRuleExport final public: SvxXMLNumRuleExport( SvXMLExport& rExport ); - ~SvxXMLNumRuleExport(); // should be private but sw::StoredChapterNumberingExport needs it void exportLevelStyles( |