diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2017-12-20 09:20:13 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2017-12-20 13:09:28 +0100 |
commit | fd2c1c5915fdcb23c2af5a3f4c0efe130174838d (patch) | |
tree | 3d168e5300bd3d78195de6bfa7e0207851ea6b05 /embeddedobj | |
parent | c6c1c7e6031f8b438cb8ad8b3eaf79abc2771ff6 (diff) |
loplugin:salcall (clang-cl)
Change-Id: Iebbbd8e20ef8d5eb28d8594e142ea323aaa63a82
Reviewed-on: https://gerrit.libreoffice.org/46835
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'embeddedobj')
-rw-r--r-- | embeddedobj/source/msole/xdialogcreator.cxx | 6 | ||||
-rw-r--r-- | embeddedobj/source/msole/xdialogcreator.hxx | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/embeddedobj/source/msole/xdialogcreator.cxx b/embeddedobj/source/msole/xdialogcreator.cxx index bcf02a0972f3..d8338cbacfd4 100644 --- a/embeddedobj/source/msole/xdialogcreator.cxx +++ b/embeddedobj/source/msole/xdialogcreator.cxx @@ -105,7 +105,7 @@ uno::Sequence< sal_Int8 > GetRelatedInternalID_Impl( const uno::Sequence< sal_In } -uno::Sequence< OUString > SAL_CALL MSOLEDialogObjectCreator::impl_staticGetSupportedServiceNames() +uno::Sequence< OUString > MSOLEDialogObjectCreator::impl_staticGetSupportedServiceNames() { uno::Sequence< OUString > aRet(2); aRet[0] = "com.sun.star.embed.MSOLEObjectSystemCreator"; @@ -114,13 +114,13 @@ uno::Sequence< OUString > SAL_CALL MSOLEDialogObjectCreator::impl_staticGetSuppo } -OUString SAL_CALL MSOLEDialogObjectCreator::impl_staticGetImplementationName() +OUString MSOLEDialogObjectCreator::impl_staticGetImplementationName() { return OUString("com.sun.star.comp.embed.MSOLEObjectSystemCreator"); } -uno::Reference< uno::XInterface > SAL_CALL MSOLEDialogObjectCreator::impl_staticCreateSelfInstance( +uno::Reference< uno::XInterface > MSOLEDialogObjectCreator::impl_staticCreateSelfInstance( const uno::Reference< lang::XMultiServiceFactory >& xServiceManager ) { return uno::Reference< uno::XInterface >( *new MSOLEDialogObjectCreator( xServiceManager ) ); diff --git a/embeddedobj/source/msole/xdialogcreator.hxx b/embeddedobj/source/msole/xdialogcreator.hxx index 02a8059c094c..b858930b3646 100644 --- a/embeddedobj/source/msole/xdialogcreator.hxx +++ b/embeddedobj/source/msole/xdialogcreator.hxx @@ -42,11 +42,11 @@ public: OSL_ENSURE( xFactory.is(), "No service manager is provided!" ); } - static css::uno::Sequence< OUString > SAL_CALL impl_staticGetSupportedServiceNames(); + static css::uno::Sequence< OUString > impl_staticGetSupportedServiceNames(); - static OUString SAL_CALL impl_staticGetImplementationName(); + static OUString impl_staticGetImplementationName(); - static css::uno::Reference< css::uno::XInterface > SAL_CALL + static css::uno::Reference< css::uno::XInterface > impl_staticCreateSelfInstance( const css::uno::Reference< css::lang::XMultiServiceFactory >& xServiceManager ); |