Added symbol for MSVC.

This commit is contained in:
Kohei Yoshida
2011-08-15 20:52:22 -04:00
parent 825ea8f4ae
commit a3e7f4b932
2 changed files with 8 additions and 3 deletions

View File

@@ -285,3 +285,7 @@ UDK_3.7 { # OOo 3.4
?setDependentFastPropertyValue@OPropertySetHelper@cppu@@IAEXJABVAny@uno@star@sun@com@@@Z;
} UDK_3.6;
UDK_3.8 { # LibO 3.5
global:
?enableChangeListenerNotification@OPropertySetHelper@cppu@@UAAXE@Z;
} UDK_3.7;

View File

@@ -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;
}