diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-03-01 14:36:39 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2019-03-03 14:40:27 +0100 |
commit | bf0150eae796e8ef15af455d5d03f52fdb14b7aa (patch) | |
tree | bf0cf774e0e5ce2f4469e9947ae981c80216eb30 /include | |
parent | 1b587efd9976cee197fdac24a135de7480cf4e89 (diff) |
revert ABI change from "expand out IMPL_XTYPEPROVIDER_START macro"
in commit d559c28e9e65f3be415ec2e36ee90aa147e65b84, instead add a
separate const method
Change-Id: If156dd07e77da2efe72c92198960311399151a9d
Reviewed-on: https://gerrit.libreoffice.org/68549
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/cppuhelper/typeprovider.hxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/cppuhelper/typeprovider.hxx b/include/cppuhelper/typeprovider.hxx index 2cc776c78fcd..3902396248e1 100644 --- a/include/cppuhelper/typeprovider.hxx +++ b/include/cppuhelper/typeprovider.hxx @@ -158,6 +158,8 @@ public: @return type collection */ + css::uno::Sequence< css::uno::Type > SAL_CALL getTypes() + { return _aTypes; } css::uno::Sequence< css::uno::Type > const & SAL_CALL getTypes() const { return _aTypes; } }; |