diff options
Diffstat (limited to 'sd/source/ui/presenter/PresenterHelper.hxx')
-rw-r--r-- | sd/source/ui/presenter/PresenterHelper.hxx | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/sd/source/ui/presenter/PresenterHelper.hxx b/sd/source/ui/presenter/PresenterHelper.hxx index cee7e39fb349..5450447dd60e 100644 --- a/sd/source/ui/presenter/PresenterHelper.hxx +++ b/sd/source/ui/presenter/PresenterHelper.hxx @@ -21,6 +21,7 @@ #include <com/sun/star/drawing/XPresenterHelper.hpp> #include <com/sun/star/lang/XInitialization.hpp> +#include <com/sun/star/lang/XServiceInfo.hpp> #include <comphelper/compbase.hxx> namespace com::sun::star::uno { class XComponentContext; } @@ -29,6 +30,7 @@ namespace sd::presenter { typedef comphelper::WeakComponentImplHelper< css::lang::XInitialization, + css::lang::XServiceInfo, css::drawing::XPresenterHelper > PresenterHelperInterfaceBase; @@ -48,6 +50,10 @@ public: virtual void SAL_CALL initialize (const css::uno::Sequence<css::uno::Any>& rArguments) override; + OUString SAL_CALL getImplementationName() override; + sal_Bool SAL_CALL supportsService(OUString const & ServiceName) override; + css::uno::Sequence<OUString> SAL_CALL getSupportedServiceNames() override; + // XPresenterHelper virtual css::uno::Reference<css::awt::XWindow> SAL_CALL createWindow ( |