summaryrefslogtreecommitdiff
path: root/forms
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2019-12-12 11:07:24 +0100
committerStephan Bergmann <sbergman@redhat.com>2019-12-12 14:35:24 +0100
commit31fffe5538fd8011afa0076fdca39379c28fcff5 (patch)
tree1254cba1665cac704d93be54ae985e7d4b19a270 /forms
parent64bf055db690a4475cf49dc03800619674b891c2 (diff)
Remove some redundant user-provided dtors
...which silences various -Wdeprecated-copy-dtor warnings from Clang 10 trunk about copy functions being implicitly defined as non-deleted even though the class has a user-declared dtor Change-Id: I3409d403c3c709de4ad94eccbc2d7869e41847cc Reviewed-on: https://gerrit.libreoffice.org/85032 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'forms')
-rw-r--r--forms/source/component/GroupManager.cxx4
-rw-r--r--forms/source/component/GroupManager.hxx1
2 files changed, 0 insertions, 5 deletions
diff --git a/forms/source/component/GroupManager.cxx b/forms/source/component/GroupManager.cxx
index 6b6069161877..7131dab79753 100644
--- a/forms/source/component/GroupManager.cxx
+++ b/forms/source/component/GroupManager.cxx
@@ -126,10 +126,6 @@ OGroup::OGroup( const OUString& rGroupName )
{
}
-OGroup::~OGroup()
-{
-}
-
void OGroup::InsertComponent( const Reference<XPropertySet>& xSet )
{
OGroupComp aNewGroupComp( xSet, m_nInsertPos );
diff --git a/forms/source/component/GroupManager.hxx b/forms/source/component/GroupManager.hxx
index 0bbd915a6f51..51d1e9e16e98 100644
--- a/forms/source/component/GroupManager.hxx
+++ b/forms/source/component/GroupManager.hxx
@@ -138,7 +138,6 @@ class OGroup final
public:
explicit OGroup(const OUString& rGroupName);
- ~OGroup();
const OUString& GetGroupName() const { return m_aGroupName; }
css::uno::Sequence< css::uno::Reference< css::awt::XControlModel> > GetControlModels() const;