summaryrefslogtreecommitdiff
path: root/remotebridges
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-10-23 15:43:36 +0200
committerNoel Grandin <noelgrandin@gmail.com>2015-10-26 06:36:45 +0000
commitc4c2c7e4273fb662bcb2ef9d8e2940799ed7d4a9 (patch)
tree6993d1b375ceb1cb804864b01756bed1e384ed91 /remotebridges
parentcc906ec47eaaad247e8fbed5c9e6f3604a8b64c7 (diff)
com::sun::star->css in remotebridges,reportdesign
Change-Id: Id210cbc3481a8a31e6fc0ba2028346fc585c8744 Reviewed-on: https://gerrit.libreoffice.org/19597 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'remotebridges')
-rw-r--r--remotebridges/examples/officeclient.cxx2
-rw-r--r--remotebridges/source/unourl_resolver/unourl_resolver.cxx12
2 files changed, 7 insertions, 7 deletions
diff --git a/remotebridges/examples/officeclient.cxx b/remotebridges/examples/officeclient.cxx
index 3d381691ca03..dcdf44f198af 100644
--- a/remotebridges/examples/officeclient.cxx
+++ b/remotebridges/examples/officeclient.cxx
@@ -183,7 +183,7 @@ sal_Int32 OfficeClientMain::run( const Sequence< OUString > & aArguments ) throw
OUString::createFromAscii( urls[i] ) ,
OUString( "_blank"),
0 ,
- Sequence < ::com::sun::star::beans::PropertyValue >() );
+ Sequence < css::beans::PropertyValue >() );
if( 0 == i )
{
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();
}