summaryrefslogtreecommitdiff
path: root/shell/source/cmdmail
diff options
context:
space:
mode:
Diffstat (limited to 'shell/source/cmdmail')
-rw-r--r--shell/source/cmdmail/cmdmailentry.cxx4
-rw-r--r--shell/source/cmdmail/cmdmailsuppl.cxx2
2 files changed, 3 insertions, 3 deletions
diff --git a/shell/source/cmdmail/cmdmailentry.cxx b/shell/source/cmdmail/cmdmailentry.cxx
index 1e17dde9b3b4..217343612fe8 100644
--- a/shell/source/cmdmail/cmdmailentry.cxx
+++ b/shell/source/cmdmail/cmdmailentry.cxx
@@ -33,7 +33,7 @@ using com::sun::star::system::XSimpleMailClientSupplier;
namespace
{
- Reference< XInterface > SAL_CALL createInstance( const Reference< XComponentContext >& xContext )
+ Reference< XInterface > createInstance( const Reference< XComponentContext >& xContext )
{
return Reference< XInterface >( static_cast< XSimpleMailClientSupplier* >( new CmdMailSuppl( xContext ) ) );
}
@@ -42,7 +42,7 @@ namespace
extern "C"
{
-SAL_DLLPUBLIC_EXPORT void* SAL_CALL cmdmail_component_getFactory(
+SAL_DLLPUBLIC_EXPORT void* cmdmail_component_getFactory(
const sal_Char* pImplName,
SAL_UNUSED_PARAMETER void* /*pSrvManager*/,
SAL_UNUSED_PARAMETER void* /*pRegistryKey*/ )
diff --git a/shell/source/cmdmail/cmdmailsuppl.cxx b/shell/source/cmdmail/cmdmailsuppl.cxx
index 77285609648f..687bee4a09ff 100644
--- a/shell/source/cmdmail/cmdmailsuppl.cxx
+++ b/shell/source/cmdmail/cmdmailsuppl.cxx
@@ -55,7 +55,7 @@ using namespace com::sun::star::configuration;
namespace
{
- Sequence< OUString > SAL_CALL Component_getSupportedServiceNames()
+ Sequence< OUString > Component_getSupportedServiceNames()
{
Sequence< OUString > aRet { "com.sun.star.system.SimpleCommandMail" };
return aRet;