From f139c10fd357c1c07f857a1d277f39d9cbc39d1f Mon Sep 17 00:00:00 2001 From: Alexandre Vicenzi Date: Wed, 5 Feb 2014 23:57:38 -0200 Subject: fdo#54938 Convert oox, sc, vcl, svtools... to cppu::supportsService Change-Id: I6268bc57417d53b9810c81071fbcd604e2a19507 Reviewed-on: https://gerrit.libreoffice.org/7886 Tested-by: LibreOffice gerrit bot Reviewed-by: Marcos Souza --- vcl/osx/clipboard.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'vcl/osx/clipboard.cxx') diff --git a/vcl/osx/clipboard.cxx b/vcl/osx/clipboard.cxx index f65d77932a33..ed6ec54ae6c4 100644 --- a/vcl/osx/clipboard.cxx +++ b/vcl/osx/clipboard.cxx @@ -334,9 +334,9 @@ OUString SAL_CALL AquaClipboard::getImplementationName() throw( RuntimeException return clipboard_getImplementationName(); } -sal_Bool SAL_CALL AquaClipboard::supportsService( const OUString& /*ServiceName*/ ) throw( RuntimeException ) +sal_Bool SAL_CALL AquaClipboard::supportsService( const OUString& ServiceName ) throw( RuntimeException ) { - return sal_False; + return cppu::supportsService(this, ServiceName); } Sequence< OUString > SAL_CALL AquaClipboard::getSupportedServiceNames() throw( RuntimeException ) -- cgit