diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2023-03-31 14:38:56 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2023-03-31 14:34:08 +0000 |
commit | 96a47eeedfe4c8adcf2c2903d72fe6e4e12a65e3 (patch) | |
tree | d8120e1cb51d1ad7fc4702293b5fa7cc941061c8 /include/comphelper | |
parent | 589cd835436de8ada027280f927fa2ae28420317 (diff) |
simplify subclasses of comphelper::OPropertySetHelper
they should deal in terms of the fast property IDS, they should not need
to override setPropertyValueImpl, so just remove this, and standardise
on the subclasses overriding setFastPropertyValueImpl
Change-Id: I190955ccc4ae3e07dd481a1044f3c074dd1a40aa
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/149836
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/comphelper')
-rw-r--r-- | include/comphelper/propshlp.hxx | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/include/comphelper/propshlp.hxx b/include/comphelper/propshlp.hxx index c9e397ae8d15..bca25d84d9d6 100644 --- a/include/comphelper/propshlp.hxx +++ b/include/comphelper/propshlp.hxx @@ -184,10 +184,6 @@ protected: */ ~OPropertySetHelper(); - /** Override this if you need to do something special during setPropertyValue */ - virtual void setPropertyValueImpl(std::unique_lock<std::mutex>& rGuard, - const ::rtl::OUString& rPropertyName, - const css::uno::Any& aValue); /** Override this if you need to do something special during setFastPropertyValue */ virtual void setFastPropertyValueImpl(std::unique_lock<std::mutex>& rGuard, sal_Int32 nHandle, const css::uno::Any& rValue); |