diff options
author | Miklos Vajna <vmiklos@collabora.co.uk> | 2018-01-11 08:35:48 +0100 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.co.uk> | 2018-01-11 14:27:51 +0100 |
commit | 74b3924a98dfeeec719f7bc27a2e0a2e1a597167 (patch) | |
tree | f2375ba227971ed7b080b3fa7259e6a741435282 /include | |
parent | 4a0f40113d83742792d765eb1abcbb239cbbf2dd (diff) |
connectivity: various small cleanups in the Writer driver
Change-Id: I91735c3e92262fd37966c53f973d5eee1522cd61
Reviewed-on: https://gerrit.libreoffice.org/47741
Reviewed-by: Miklos Vajna <vmiklos@collabora.co.uk>
Tested-by: Jenkins <ci@libreoffice.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/connectivity/CommonTools.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/connectivity/CommonTools.hxx b/include/connectivity/CommonTools.hxx index 608381be7999..8168ca60d779 100644 --- a/include/connectivity/CommonTools.hxx +++ b/include/connectivity/CommonTools.hxx @@ -156,7 +156,7 @@ namespace connectivity #define DECLARE_SERVICE_INFO() \ virtual OUString SAL_CALL getImplementationName( ) override; \ - virtual sal_Bool SAL_CALL supportsService( const OUString& ServiceName ) override; \ + virtual sal_Bool SAL_CALL supportsService( const OUString& rServiceName ) override; \ virtual css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames( ) override \ #define IMPLEMENT_SERVICE_INFO(classname, implasciiname, serviceasciiname) \ @@ -169,9 +169,9 @@ namespace connectivity css::uno::Sequence< OUString > aSupported { serviceasciiname }; \ return aSupported; \ } \ - sal_Bool SAL_CALL classname::supportsService( const OUString& _rServiceName ) \ + sal_Bool SAL_CALL classname::supportsService( const OUString& rServiceName ) \ { \ - return cppu::supportsService(this, _rServiceName); \ + return cppu::supportsService(this, rServiceName); \ } \ #endif // INCLUDED_CONNECTIVITY_COMMONTOOLS_HXX |