diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-01-16 10:19:36 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-01-16 10:19:36 +0100 |
commit | d3ce5b298e3f5cc58256ba80f5d3f361618c4820 (patch) | |
tree | 64dc0fd518d05d3626f6a4ce656f6e6fe9f65815 /cppuhelper/source | |
parent | b0eae373b02a694ed26944d20a77e7b4467074d7 (diff) |
Fix getTypes() of OPropertySetHelper and derived
...broken with 60d60caf99a40ca0c3891bf230c5a1fdbae5f49c "Renamed XPropertySet2
to XPropertySetOption" et al
Change-Id: I684736ffafc4642548b7c24171cc52c1acb32252
Diffstat (limited to 'cppuhelper/source')
-rw-r--r-- | cppuhelper/source/propshlp.cxx | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/cppuhelper/source/propshlp.cxx b/cppuhelper/source/propshlp.cxx index d19e65674839..509019cf043a 100644 --- a/cppuhelper/source/propshlp.cxx +++ b/cppuhelper/source/propshlp.cxx @@ -231,12 +231,10 @@ Any OPropertySetHelper2::queryInterface( const ::com::sun::star::uno::Type & rTy ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > OPropertySetHelper::getTypes() throw (RuntimeException) { - Sequence< ::com::sun::star::uno::Type > aTypes( 4 ); - aTypes[ 0 ] = XPropertySet::static_type(); - aTypes[ 1 ] = XPropertySetOption::static_type(); - aTypes[ 2 ] = XMultiPropertySet::static_type(); - aTypes[ 3 ] = XFastPropertySet::static_type(); - return aTypes; + return css::uno::Sequence<css::uno::Type>({ + UnoType<css::beans::XPropertySet>::get(), + UnoType<css::beans::XMultiPropertySet>::get(), + UnoType<css::beans::XFastPropertySet>::get()}); } // ComponentHelper |