sb121: #i110049# avoid aliasing problem by stripping down not-to-be-called function

This commit is contained in:
sb 2010-03-12 10:43:00 +01:00
parent 9a832a9bdb
commit a42347c391

View file

@ -877,7 +877,8 @@ sal_Bool InterfaceIdlClassImpl::isAssignableFrom( const Reference< XIdlClass > &
Uik InterfaceIdlClassImpl::getUik()
throw(::com::sun::star::uno::RuntimeException)
{
return *(Uik *)&getTypeDescr()->aUik;
return Uik(0, 0, 0, 0, 0);
// Uiks are deprecated and this function must not be called
}
//__________________________________________________________________________________________________
Sequence< Reference< XIdlMethod > > InterfaceIdlClassImpl::getMethods()