com::sun::star->css in hwpfilter/
Change-Id: I2ec12da777d04855d34233d5781f2304e181bbbd
This commit is contained in:
@@ -53,7 +53,7 @@ sal_Int16 SAL_CALL AttributeListImpl::getLength() throw (RuntimeException, std::
|
|||||||
|
|
||||||
|
|
||||||
AttributeListImpl::AttributeListImpl( const AttributeListImpl &r ) :
|
AttributeListImpl::AttributeListImpl( const AttributeListImpl &r ) :
|
||||||
cppu::WeakImplHelper<com::sun::star::xml::sax::XAttributeList>( r )
|
cppu::WeakImplHelper<css::xml::sax::XAttributeList>( r )
|
||||||
{
|
{
|
||||||
m_pImpl = new AttributeListImpl_impl;
|
m_pImpl = new AttributeListImpl_impl;
|
||||||
*m_pImpl = *(r.m_pImpl);
|
*m_pImpl = *(r.m_pImpl);
|
||||||
|
@@ -171,11 +171,11 @@ public:
|
|||||||
|
|
||||||
// XServiceInfo
|
// XServiceInfo
|
||||||
OUString SAL_CALL getImplementationName() throw (RuntimeException, std::exception) override;
|
OUString SAL_CALL getImplementationName() throw (RuntimeException, std::exception) override;
|
||||||
Sequence< OUString > SAL_CALL getSupportedServiceNames() throw (::com::sun::star::uno::RuntimeException, std::exception) override;
|
Sequence< OUString > SAL_CALL getSupportedServiceNames() throw (css::uno::RuntimeException, std::exception) override;
|
||||||
sal_Bool SAL_CALL supportsService(const OUString& ServiceName) throw (::com::sun::star::uno::RuntimeException, std::exception) override;
|
sal_Bool SAL_CALL supportsService(const OUString& ServiceName) throw (css::uno::RuntimeException, std::exception) override;
|
||||||
|
|
||||||
//XExtendedFilterDetection
|
//XExtendedFilterDetection
|
||||||
virtual OUString SAL_CALL detect( ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue >& rDescriptor ) throw (::com::sun::star::uno::RuntimeException, std::exception) override;
|
virtual OUString SAL_CALL detect( css::uno::Sequence< css::beans::PropertyValue >& rDescriptor ) throw (css::uno::RuntimeException, std::exception) override;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
Reference< XFilter > rFilter;
|
Reference< XFilter > rFilter;
|
||||||
@@ -230,7 +230,7 @@ sal_Bool HwpImportFilter::filter( const Sequence< PropertyValue >& aDescriptor )
|
|||||||
return rFilter->filter( aDescriptor );
|
return rFilter->filter( aDescriptor );
|
||||||
}
|
}
|
||||||
|
|
||||||
void HwpImportFilter::cancel() throw(::com::sun::star::uno::RuntimeException, std::exception)
|
void HwpImportFilter::cancel() throw(css::uno::RuntimeException, std::exception)
|
||||||
{
|
{
|
||||||
rFilter->cancel();
|
rFilter->cancel();
|
||||||
}
|
}
|
||||||
@@ -247,18 +247,18 @@ OUString HwpImportFilter::getImplementationName_Static() throw()
|
|||||||
return OUString( IMPLEMENTATION_NAME );
|
return OUString( IMPLEMENTATION_NAME );
|
||||||
}
|
}
|
||||||
|
|
||||||
OUString HwpImportFilter::getImplementationName() throw(::com::sun::star::uno::RuntimeException, std::exception)
|
OUString HwpImportFilter::getImplementationName() throw(css::uno::RuntimeException, std::exception)
|
||||||
{
|
{
|
||||||
return OUString( IMPLEMENTATION_NAME );
|
return OUString( IMPLEMENTATION_NAME );
|
||||||
}
|
}
|
||||||
|
|
||||||
sal_Bool HwpImportFilter::supportsService( const OUString& ServiceName ) throw(::com::sun::star::uno::RuntimeException, std::exception)
|
sal_Bool HwpImportFilter::supportsService( const OUString& ServiceName ) throw(css::uno::RuntimeException, std::exception)
|
||||||
{
|
{
|
||||||
return cppu::supportsService(this, ServiceName);
|
return cppu::supportsService(this, ServiceName);
|
||||||
}
|
}
|
||||||
|
|
||||||
//XExtendedFilterDetection
|
//XExtendedFilterDetection
|
||||||
OUString HwpImportFilter::detect( ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue >& rDescriptor ) throw (::com::sun::star::uno::RuntimeException, std::exception)
|
OUString HwpImportFilter::detect( css::uno::Sequence< css::beans::PropertyValue >& rDescriptor ) throw (css::uno::RuntimeException, std::exception)
|
||||||
{
|
{
|
||||||
OUString sTypeName;
|
OUString sTypeName;
|
||||||
|
|
||||||
@@ -284,7 +284,7 @@ OUString HwpImportFilter::detect( ::com::sun::star::uno::Sequence< ::com::sun::s
|
|||||||
return sTypeName;
|
return sTypeName;
|
||||||
}
|
}
|
||||||
|
|
||||||
Sequence< OUString> HwpImportFilter::getSupportedServiceNames() throw(::com::sun::star::uno::RuntimeException, std::exception)
|
Sequence< OUString> HwpImportFilter::getSupportedServiceNames() throw(css::uno::RuntimeException, std::exception)
|
||||||
{
|
{
|
||||||
Sequence < OUString > aRet(2);
|
Sequence < OUString > aRet(2);
|
||||||
OUString* pArray = aRet.getArray();
|
OUString* pArray = aRet.getArray();
|
||||||
|
Reference in New Issue
Block a user