summaryrefslogtreecommitdiff
path: root/cppuhelper/source/propshlp.cxx
diff options
context:
space:
mode:
authorKohei Yoshida <kohei.yoshida@suse.com>2011-08-15 20:52:22 -0400
committerKohei Yoshida <kohei.yoshida@suse.com>2011-08-16 21:22:44 -0400
commita3e7f4b932c82bf399a3530d8059b7097b389de9 (patch)
treee596f309fcf062679d97c48d7f7ce41ec97c3f5c /cppuhelper/source/propshlp.cxx
parent825ea8f4ae2fcdc43b1e0d5b7d8c25ba842593b9 (diff)
Added symbol for MSVC.
Diffstat (limited to 'cppuhelper/source/propshlp.cxx')
-rw-r--r--cppuhelper/source/propshlp.cxx7
1 files changed, 4 insertions, 3 deletions
diff --git a/cppuhelper/source/propshlp.cxx b/cppuhelper/source/propshlp.cxx
index 7cb259708d94..426c7c92b924 100644
--- a/cppuhelper/source/propshlp.cxx
+++ b/cppuhelper/source/propshlp.cxx
@@ -229,10 +229,11 @@ Any OPropertySetHelper::queryInterface( const ::com::sun::star::uno::Type & rTyp
::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > OPropertySetHelper::getTypes()
throw (RuntimeException)
{
- Sequence< ::com::sun::star::uno::Type > aTypes( 3 );
+ Sequence< ::com::sun::star::uno::Type > aTypes( 4 );
aTypes[ 0 ] = XPropertySet::static_type();
- aTypes[ 1 ] = XMultiPropertySet::static_type();
- aTypes[ 2 ] = XFastPropertySet::static_type();
+ aTypes[ 1 ] = XPropertySet2::static_type();
+ aTypes[ 2 ] = XMultiPropertySet::static_type();
+ aTypes[ 3 ] = XFastPropertySet::static_type();
return aTypes;
}