summaryrefslogtreecommitdiffstats
path: root/remotebridges/source/unourl_resolver/unourl_resolver.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'remotebridges/source/unourl_resolver/unourl_resolver.cxx')
-rw-r--r--remotebridges/source/unourl_resolver/unourl_resolver.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/remotebridges/source/unourl_resolver/unourl_resolver.cxx b/remotebridges/source/unourl_resolver/unourl_resolver.cxx
index 5a3bed105fbb..3a570cdeed92 100644
--- a/remotebridges/source/unourl_resolver/unourl_resolver.cxx
+++ b/remotebridges/source/unourl_resolver/unourl_resolver.cxx
@@ -69,9 +69,9 @@ public:
virtual ~ResolverImpl();
// XServiceInfo
- virtual OUString SAL_CALL getImplementationName() throw(::com::sun::star::uno::RuntimeException, std::exception) override;
- virtual sal_Bool SAL_CALL supportsService( const OUString & rServiceName ) throw(::com::sun::star::uno::RuntimeException, std::exception) override;
- virtual Sequence< OUString > SAL_CALL getSupportedServiceNames() throw(::com::sun::star::uno::RuntimeException, std::exception) override;
+ virtual OUString SAL_CALL getImplementationName() throw(css::uno::RuntimeException, std::exception) override;
+ virtual sal_Bool SAL_CALL supportsService( const OUString & rServiceName ) throw(css::uno::RuntimeException, std::exception) override;
+ virtual Sequence< OUString > SAL_CALL getSupportedServiceNames() throw(css::uno::RuntimeException, std::exception) override;
// XUnoUrlResolver
virtual Reference< XInterface > SAL_CALL resolve( const OUString & rUnoUrl )
@@ -87,19 +87,19 @@ ResolverImpl::~ResolverImpl() {}
// XServiceInfo
OUString ResolverImpl::getImplementationName()
- throw(::com::sun::star::uno::RuntimeException, std::exception)
+ throw(css::uno::RuntimeException, std::exception)
{
return resolver_getImplementationName();
}
sal_Bool ResolverImpl::supportsService( const OUString & rServiceName )
- throw(::com::sun::star::uno::RuntimeException, std::exception)
+ throw(css::uno::RuntimeException, std::exception)
{
return cppu::supportsService(this, rServiceName);
}
Sequence< OUString > ResolverImpl::getSupportedServiceNames()
- throw(::com::sun::star::uno::RuntimeException, std::exception)
+ throw(css::uno::RuntimeException, std::exception)
{
return resolver_getSupportedServiceNames();
}