diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-08-24 09:22:40 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-08-24 14:25:42 +0200 |
commit | d4f9f4b2d57c4f51c026fd114934dd63f4ece13e (patch) | |
tree | 6234db12b4029286dbfdb513ad5347450f65641c /framework/inc/helper | |
parent | 9ee96273a2090b63e0f579a1e9c9cef780756e6d (diff) |
loplugin:returnconstval in framework
Change-Id: Id3daf68e2daac3ce11117686fdc00831ce1e3a69
Reviewed-on: https://gerrit.libreoffice.org/78051
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'framework/inc/helper')
-rw-r--r-- | framework/inc/helper/uiconfigelementwrapperbase.hxx | 2 | ||||
-rw-r--r-- | framework/inc/helper/uielementwrapperbase.hxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/framework/inc/helper/uiconfigelementwrapperbase.hxx b/framework/inc/helper/uiconfigelementwrapperbase.hxx index 4ba468197986..67d971bfb687 100644 --- a/framework/inc/helper/uiconfigelementwrapperbase.hxx +++ b/framework/inc/helper/uiconfigelementwrapperbase.hxx @@ -119,7 +119,7 @@ class UIConfigElementWrapperBase : private cppu::BaseMutex, virtual void impl_fillNewData(); - static const css::uno::Sequence< css::beans::Property > impl_getStaticPropertyDescriptor(); + static css::uno::Sequence< css::beans::Property > impl_getStaticPropertyDescriptor(); sal_Int16 m_nType; bool m_bPersistent : 1, diff --git a/framework/inc/helper/uielementwrapperbase.hxx b/framework/inc/helper/uielementwrapperbase.hxx index 7119c08e1f46..11c30680f67e 100644 --- a/framework/inc/helper/uielementwrapperbase.hxx +++ b/framework/inc/helper/uielementwrapperbase.hxx @@ -97,7 +97,7 @@ class UIElementWrapperBase : private cppu::BaseMutex, virtual ::cppu::IPropertyArrayHelper& SAL_CALL getInfoHelper() override; virtual css::uno::Reference< css::beans::XPropertySetInfo > SAL_CALL getPropertySetInfo() override; - static const css::uno::Sequence< css::beans::Property > impl_getStaticPropertyDescriptor(); + static css::uno::Sequence< css::beans::Property > impl_getStaticPropertyDescriptor(); ::cppu::OMultiTypeInterfaceContainerHelper m_aListenerContainer; /// container for ALL Listener OUString m_aResourceURL; |