Kaydet (Commit) a3e7f4b9 authored tarafından Kohei Yoshida's avatar Kohei Yoshida

Added symbol for MSVC.

üst 825ea8f4
......@@ -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;
......@@ -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;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment