summaryrefslogtreecommitdiff
path: root/hwpfilter
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-10-19 09:15:44 +0200
committerNoel Grandin <noel@peralex.com>2015-10-19 15:33:26 +0200
commite26c4b4f099fbb5cb0f07b48ef18fc8e9585fbae (patch)
tree248f875ab3439ffd96b708943ec6d8be61898697 /hwpfilter
parentc4484a8225a5d0fe0cd8a7f9ca36cc8b009b35ff (diff)
com::sun::star->css in hwpfilter/
Change-Id: I2ec12da777d04855d34233d5781f2304e181bbbd
Diffstat (limited to 'hwpfilter')
-rw-r--r--hwpfilter/source/attributes.cxx2
-rw-r--r--hwpfilter/source/hwpreader.hxx16
2 files changed, 9 insertions, 9 deletions
diff --git a/hwpfilter/source/attributes.cxx b/hwpfilter/source/attributes.cxx
index 14868ec5a8f3..4c91b72fc91d 100644
--- a/hwpfilter/source/attributes.cxx
+++ b/hwpfilter/source/attributes.cxx
@@ -53,7 +53,7 @@ sal_Int16 SAL_CALL AttributeListImpl::getLength() throw (RuntimeException, std::
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 = *(r.m_pImpl);
diff --git a/hwpfilter/source/hwpreader.hxx b/hwpfilter/source/hwpreader.hxx
index 567d0f4d4d56..a144b50afd6d 100644
--- a/hwpfilter/source/hwpreader.hxx
+++ b/hwpfilter/source/hwpreader.hxx
@@ -171,11 +171,11 @@ public:
// XServiceInfo
OUString SAL_CALL getImplementationName() throw (RuntimeException, std::exception) override;
- Sequence< OUString > SAL_CALL getSupportedServiceNames() throw (::com::sun::star::uno::RuntimeException, std::exception) override;
- sal_Bool SAL_CALL supportsService(const OUString& ServiceName) 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 (css::uno::RuntimeException, std::exception) override;
//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:
Reference< XFilter > rFilter;
@@ -230,7 +230,7 @@ sal_Bool HwpImportFilter::filter( const Sequence< PropertyValue >& 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();
}
@@ -247,18 +247,18 @@ OUString HwpImportFilter::getImplementationName_Static() throw()
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 );
}
-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);
}
//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;
@@ -284,7 +284,7 @@ OUString HwpImportFilter::detect( ::com::sun::star::uno::Sequence< ::com::sun::s
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);
OUString* pArray = aRet.getArray();