summaryrefslogtreecommitdiff
path: root/ucb
diff options
context:
space:
mode:
Diffstat (limited to 'ucb')
-rw-r--r--ucb/source/ucp/ext/ucpext_provider.cxx4
-rw-r--r--ucb/source/ucp/ext/ucpext_provider.hxx6
-rw-r--r--ucb/source/ucp/file/filtask.cxx4
-rw-r--r--ucb/source/ucp/file/filtask.hxx4
4 files changed, 9 insertions, 9 deletions
diff --git a/ucb/source/ucp/ext/ucpext_provider.cxx b/ucb/source/ucp/ext/ucpext_provider.cxx
index 46e37a3f93dc..88d00cade588 100644
--- a/ucb/source/ucp/ext/ucpext_provider.cxx
+++ b/ucb/source/ucp/ext/ucpext_provider.cxx
@@ -54,7 +54,7 @@ namespace ucb { namespace ucp { namespace ext
}
- OUString SAL_CALL ContentProvider::getImplementationName_static()
+ OUString ContentProvider::getImplementationName_static()
{
return OUString( "org.openoffice.comp.ucp.ext.ContentProvider" );
}
@@ -66,7 +66,7 @@ namespace ucb { namespace ucp { namespace ext
}
- Sequence< OUString > SAL_CALL ContentProvider::getSupportedServiceNames_static( )
+ Sequence< OUString > ContentProvider::getSupportedServiceNames_static( )
{
Sequence< OUString > aServiceNames(2);
aServiceNames[0] = "com.sun.star.ucb.ContentProvider";
diff --git a/ucb/source/ucp/ext/ucpext_provider.hxx b/ucb/source/ucp/ext/ucpext_provider.hxx
index e69f827b33aa..77f98f8f48b7 100644
--- a/ucb/source/ucp/ext/ucpext_provider.hxx
+++ b/ucb/source/ucp/ext/ucpext_provider.hxx
@@ -42,10 +42,10 @@ namespace ucb { namespace ucp { namespace ext
// XServiceInfo - static versions
/// @throws css::uno::RuntimeException
- static OUString SAL_CALL getImplementationName_static( );
+ static OUString getImplementationName_static( );
/// @throws css::uno::RuntimeException
- static css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames_static();
- static css::uno::Reference< css::uno::XInterface > SAL_CALL Create( const css::uno::Reference< css::uno::XComponentContext >& i_rContext );
+ static css::uno::Sequence< OUString > getSupportedServiceNames_static();
+ static css::uno::Reference< css::uno::XInterface > Create( const css::uno::Reference< css::uno::XComponentContext >& i_rContext );
// XContentProvider
virtual css::uno::Reference< css::ucb::XContent > SAL_CALL queryContent( const css::uno::Reference< css::ucb::XContentIdentifier >& Identifier ) override;
diff --git a/ucb/source/ucp/file/filtask.cxx b/ucb/source/ucp/file/filtask.cxx
index 5f0186c8ee75..ca8c7cc954be 100644
--- a/ucb/source/ucp/file/filtask.cxx
+++ b/ucb/source/ucp/file/filtask.cxx
@@ -3067,14 +3067,14 @@ TaskManager::getScheme( OUString& Scheme )
Scheme = "file";
}
-OUString SAL_CALL
+OUString
TaskManager::getImplementationName_static()
{
return OUString("com.sun.star.comp.ucb.FileProvider");
}
-uno::Sequence< OUString > SAL_CALL
+uno::Sequence< OUString >
TaskManager::getSupportedServiceNames_static()
{
OUString Supported("com.sun.star.ucb.FileContentProvider");
diff --git a/ucb/source/ucp/file/filtask.hxx b/ucb/source/ucp/file/filtask.hxx
index e89ca36e2a72..05802f259db5 100644
--- a/ucb/source/ucp/file/filtask.hxx
+++ b/ucb/source/ucp/file/filtask.hxx
@@ -682,9 +682,9 @@ namespace fileaccess
static void getScheme( OUString& Scheme );
- static OUString SAL_CALL getImplementationName_static();
+ static OUString getImplementationName_static();
- static css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames_static();
+ static css::uno::Sequence< OUString > getSupportedServiceNames_static();
};
} // end namespace TaskHandling