OPropertyStateHelper::getTypes isn't an override of XTypeProvider::getTypes

Change-Id: I633c711aabbd2ec7d1385d106b512f14672393f1
This commit is contained in:
Stephan Bergmann
2014-03-11 12:48:18 +01:00
parent 16986df561
commit ff19246a81
2 changed files with 2 additions and 3 deletions

View File

@@ -53,7 +53,7 @@ namespace comphelper
}
::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type> OPropertyStateHelper::getTypes() throw( ::com::sun::star::uno::RuntimeException, std::exception)
css::uno::Sequence<css::uno::Type> OPropertyStateHelper::getTypes()
{
::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type> aTypes(4);
::com::sun::star::uno::Type* pTypes = aTypes.getArray();

View File

@@ -75,8 +75,7 @@ namespace comphelper
void firePropertyChange(sal_Int32 nHandle, const ::com::sun::star::uno::Any& aNewValue, const ::com::sun::star::uno::Any& aOldValue);
protected:
virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type> SAL_CALL getTypes() throw(::com::sun::star::uno::RuntimeException, std::exception);
css::uno::Sequence<css::uno::Type> getTypes();
};