summaryrefslogtreecommitdiff
path: root/include/comphelper
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2024-03-27 10:08:21 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2024-03-28 19:08:49 +0100
commit35d9d669f26663d8fc71f9a67bbaf94bc90d4b25 (patch)
treeaee58c1225e1513c87d9b19d02820848da5882dc /include/comphelper
parent6e8fb02d75eea17d41bbf76d40de723162968f27 (diff)
convert OXSDDataType to comphelper::WeakImplHelperBase
Change-Id: Idb299ea698480d0b98ac0deff9d1f9b87e749782 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/165442 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/comphelper')
-rw-r--r--include/comphelper/propshlp.hxx13
1 files changed, 6 insertions, 7 deletions
diff --git a/include/comphelper/propshlp.hxx b/include/comphelper/propshlp.hxx
index d5f148de4893..bd08cd6a6499 100644
--- a/include/comphelper/propshlp.hxx
+++ b/include/comphelper/propshlp.hxx
@@ -91,33 +91,32 @@ public:
value and setFastPropertyValue is called.
*/
virtual void SAL_CALL setPropertyValue(const ::rtl::OUString& rPropertyName,
- const css::uno::Any& aValue) override final;
+ const css::uno::Any& aValue) override;
/**
Throw UnknownPropertyException if the property with the name
rPropertyName does not exist.
*/
- virtual css::uno::Any SAL_CALL
- getPropertyValue(const ::rtl::OUString& aPropertyName) override final;
+ virtual css::uno::Any SAL_CALL getPropertyValue(const ::rtl::OUString& aPropertyName) override;
/** Ignored if the property is not bound. */
virtual void SAL_CALL addPropertyChangeListener(
const ::rtl::OUString& aPropertyName,
- const css::uno::Reference<css::beans::XPropertyChangeListener>& aListener) override final;
+ const css::uno::Reference<css::beans::XPropertyChangeListener>& aListener) override;
/** Ignored if the property is not bound. */
virtual void SAL_CALL removePropertyChangeListener(
const ::rtl::OUString& aPropertyName,
- const css::uno::Reference<css::beans::XPropertyChangeListener>& aListener) override final;
+ const css::uno::Reference<css::beans::XPropertyChangeListener>& aListener) override;
/** Ignored if the property is not constrained. */
virtual void SAL_CALL addVetoableChangeListener(
const ::rtl::OUString& aPropertyName,
- const css::uno::Reference<css::beans::XVetoableChangeListener>& aListener) override final;
+ const css::uno::Reference<css::beans::XVetoableChangeListener>& aListener) override;
/** Ignored if the property is not constrained. */
virtual void SAL_CALL removeVetoableChangeListener(
const ::rtl::OUString& aPropertyName,
- const css::uno::Reference<css::beans::XVetoableChangeListener>& aListener) override final;
+ const css::uno::Reference<css::beans::XVetoableChangeListener>& aListener) override;
/**
Throw UnknownPropertyException or PropertyVetoException if the property with the name