summaryrefslogtreecommitdiff
path: root/sd/source/console/PresenterSlideShowView.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2023-01-25 15:20:21 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2023-01-26 10:05:41 +0000
commit4b1d750f9cf953f6483f13e0a4d1901800d417ce (patch)
tree1a6a5766ac2c8bb9e5e75f59e778c3fcc881dbdd /sd/source/console/PresenterSlideShowView.hxx
parent622cf1dfe5b4b0e8a5d97b397d44a7bc66a4d7e7 (diff)
use more concrete types in sd console
Change-Id: I5ac9d084616563ba3ae67ee040b4f52156baea67 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146159 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sd/source/console/PresenterSlideShowView.hxx')
-rw-r--r--sd/source/console/PresenterSlideShowView.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sd/source/console/PresenterSlideShowView.hxx b/sd/source/console/PresenterSlideShowView.hxx
index e4466522eddf..1506f940ea4a 100644
--- a/sd/source/console/PresenterSlideShowView.hxx
+++ b/sd/source/console/PresenterSlideShowView.hxx
@@ -61,7 +61,7 @@ public:
PresenterSlideShowView (
css::uno::Reference<css::uno::XComponentContext> xContext,
css::uno::Reference<css::drawing::framework::XResourceId> xViewId,
- const css::uno::Reference<css::frame::XController>& rxController,
+ const rtl::Reference<::sd::DrawController>& rxController,
::rtl::Reference<PresenterController> xPresenterController);
virtual ~PresenterSlideShowView() override;
PresenterSlideShowView(const PresenterSlideShowView&) = delete;
@@ -176,7 +176,7 @@ private:
css::uno::Reference<css::uno::XComponentContext> mxComponentContext;
::rtl::Reference<PresenterController> mpPresenterController;
css::uno::Reference<css::drawing::framework::XResourceId> mxViewId;
- css::uno::Reference<css::frame::XController> mxController;
+ rtl::Reference<::sd::DrawController> mxController;
css::uno::Reference<css::presentation::XSlideShowController> mxSlideShowController;
css::uno::Reference<css::presentation::XSlideShow> mxSlideShow;
css::uno::Reference<css::rendering::XCanvas> mxCanvas;