From 3099c70b11c7e5b80fe4dbe3dc99171fb38c6fc2 Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Tue, 17 Mar 2015 12:25:11 +0100 Subject: Fix various XServiceInfo implementations ...to match what is recorded in the .component files Change-Id: Ie548cd37872d3b8540222201afaac73040e65c8f --- sdext/source/presenter/PresenterProtocolHandler.cxx | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) (limited to 'sdext/source/presenter/PresenterProtocolHandler.cxx') diff --git a/sdext/source/presenter/PresenterProtocolHandler.cxx b/sdext/source/presenter/PresenterProtocolHandler.cxx index 50d69f4dca79..c18625492d74 100644 --- a/sdext/source/presenter/PresenterProtocolHandler.cxx +++ b/sdext/source/presenter/PresenterProtocolHandler.cxx @@ -36,6 +36,7 @@ #include #include #include +#include using namespace ::com::sun::star; using namespace ::com::sun::star::uno; @@ -289,6 +290,25 @@ void SAL_CALL PresenterProtocolHandler::initialize (const Sequence& aArgume } } +OUString PresenterProtocolHandler::getImplementationName() + throw (css::uno::RuntimeException, std::exception) +{ + return getImplementationName_static(); +} + +sal_Bool PresenterProtocolHandler::supportsService(OUString const & ServiceName) + throw (css::uno::RuntimeException, std::exception) +{ + return cppu::supportsService(this, ServiceName); +} + +css::uno::Sequence +PresenterProtocolHandler::getSupportedServiceNames() + throw (css::uno::RuntimeException, std::exception) +{ + return getSupportedServiceNames_static(); +} + //----- XDispatchProvider ----------------------------------------------------- Reference SAL_CALL PresenterProtocolHandler::queryDispatch ( -- cgit