summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorStephan Bergmann <stephan.bergmann@allotropia.de>2024-03-01 15:34:48 +0100
committerStephan Bergmann <stephan.bergmann@allotropia.de>2024-03-04 21:43:18 +0100
commit893af92ae990909d477434d48d97dae0814e7e58 (patch)
tree6784385424d43423e06dcc2f91381081be0fa799 /include
parent0bab5cda2123ecc7f3775d05ca5103bdef23bfe8 (diff)
Add Embind'ing of UNO Any getter for sequences
Change-Id: I5b81ad3d5f1351062aef43105ea7ec4678045a90 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/164360 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <stephan.bergmann@allotropia.de>
Diffstat (limited to 'include')
-rw-r--r--include/static/unoembindhelpers/PrimaryBindings.hxx1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/static/unoembindhelpers/PrimaryBindings.hxx b/include/static/unoembindhelpers/PrimaryBindings.hxx
index 13ddd05cce26..259c9c2944f8 100644
--- a/include/static/unoembindhelpers/PrimaryBindings.hxx
+++ b/include/static/unoembindhelpers/PrimaryBindings.hxx
@@ -125,6 +125,7 @@ template <typename T> void registerSequence(char const* name)
checkSequenceAccess(self, index);
self.getArray()[index] = value;
});
+ registerUnoType<css::uno::Sequence<T>>();
}
}