diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2022-03-11 10:55:38 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2022-03-11 13:01:31 +0100 |
commit | d680b29e05dd3ac2e64e47c4e1f83a4e38b1db24 (patch) | |
tree | be0050c484857c32f27a3962d1615b8a1435eb92 /extensions | |
parent | a188ffa01616673c011c7bc1a392a6f6fa81f93b (diff) |
loplugin:trivialdestructor
Change-Id: Id8a35dbbc1eecd2f568f253ddea5cb7ca3064ecd
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/131341
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'extensions')
-rw-r--r-- | extensions/source/update/check/updatecheckconfig.cxx | 4 | ||||
-rw-r--r-- | extensions/source/update/check/updatecheckconfig.hxx | 2 |
2 files changed, 0 insertions, 6 deletions
diff --git a/extensions/source/update/check/updatecheckconfig.cxx b/extensions/source/update/check/updatecheckconfig.cxx index 30e444051e3f..6a9236ed6987 100644 --- a/extensions/source/update/check/updatecheckconfig.cxx +++ b/extensions/source/update/check/updatecheckconfig.cxx @@ -75,10 +75,6 @@ const char * const aUpdateEntryProperties[] = { const sal_uInt32 nUpdateEntryProperties = SAL_N_ELEMENTS(aUpdateEntryProperties); -NamedValueByNameAccess::~NamedValueByNameAccess() -{ -} - css::uno::Any NamedValueByNameAccess::getValue(const char * pName) { const sal_Int32 nLen = m_rValues.getLength(); diff --git a/extensions/source/update/check/updatecheckconfig.hxx b/extensions/source/update/check/updatecheckconfig.hxx index 75e65e6e8be0..a9836c624822 100644 --- a/extensions/source/update/check/updatecheckconfig.hxx +++ b/extensions/source/update/check/updatecheckconfig.hxx @@ -40,8 +40,6 @@ public: const css::uno::Sequence< css::beans::NamedValue >& rValues) : m_rValues(rValues) {} ; - ~NamedValueByNameAccess(); - css::uno::Any getValue(const char * pName); }; |