summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorArnaud Versini <arnaud.versini@libreoffice.org>2020-10-25 16:39:38 +0100
committerNoel Grandin <noel.grandin@collabora.co.uk>2020-10-25 18:12:05 +0100
commit9411511e647f0847506bd1143a19f33af79d376f (patch)
tree9060bff49ad3084655860393c8fc69de6f39a7dc /include
parent37081085fa989aa2fd07a7a0d063295819e185a0 (diff)
UNOTOOLS : simplify AccessibleRelationHelper by removing useless impl pattern
Change-Id: I6cb14c5c973067c0ea1c64eab40e38b8b548174f Reviewed-on: https://gerrit.libreoffice.org/c/core/+/104776 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include')
-rw-r--r--include/unotools/accessiblerelationsethelper.hxx6
1 files changed, 2 insertions, 4 deletions
diff --git a/include/unotools/accessiblerelationsethelper.hxx b/include/unotools/accessiblerelationsethelper.hxx
index 6417401796d5..b4edb6b95159 100644
--- a/include/unotools/accessiblerelationsethelper.hxx
+++ b/include/unotools/accessiblerelationsethelper.hxx
@@ -25,9 +25,7 @@
#include <com/sun/star/accessibility/XAccessibleRelationSet.hpp>
#include <osl/mutex.hxx>
#include <cppuhelper/implbase.hxx>
-#include <memory>
-
-class AccessibleRelationSetHelperImpl;
+#include <vector>
//= XAccessibleRelationSet helper classes
@@ -123,7 +121,7 @@ private:
/// Mutex guarding this object.
::osl::Mutex maMutex;
/// The implementation of this helper interface.
- std::unique_ptr<AccessibleRelationSetHelperImpl> mpHelperImpl;
+ std::vector<css::accessibility::AccessibleRelation> maRelations;
};
}